Compare commits
3 Commits
f3a29429aa
...
868764e0cd
Author | SHA1 | Date |
---|---|---|
Øystein Tveit | 868764e0cd | |
Øystein Tveit | 7c3ff2068d | |
Øystein Tveit | 9d3f1381bf |
|
@ -86,7 +86,20 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
extensions = {
|
extensions = {
|
||||||
inherit (pkgs.mediawiki-extensions) DeleteBatch UserMerge PluggableAuth SimpleSAMLphp VisualEditor;
|
inherit (pkgs.mediawiki-extensions)
|
||||||
|
CodeEditor
|
||||||
|
CodeMirror
|
||||||
|
DeleteBatch
|
||||||
|
PluggableAuth
|
||||||
|
Popups
|
||||||
|
Scribunto
|
||||||
|
SimpleSAMLphp
|
||||||
|
TemplateData
|
||||||
|
TemplateStyles
|
||||||
|
UserMerge
|
||||||
|
VisualEditor
|
||||||
|
WikiEditor
|
||||||
|
;
|
||||||
};
|
};
|
||||||
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
|
@ -122,10 +135,25 @@ in {
|
||||||
$wgEmergencyContact = "${cfg.passwordSender}";
|
$wgEmergencyContact = "${cfg.passwordSender}";
|
||||||
$wgUseTeX = false;
|
$wgUseTeX = false;
|
||||||
$wgLocalInterwiki = $wgSitename;
|
$wgLocalInterwiki = $wgSitename;
|
||||||
|
# Fix https://github.com/NixOS/nixpkgs/issues/183097
|
||||||
|
$wgDBserver = "${toString cfg.database.host}";
|
||||||
|
$wgAllowCopyUploads = true;
|
||||||
|
|
||||||
# SimpleSAML
|
# Misc program paths
|
||||||
|
$wgFFmpegLocation = '${pkgs.ffmpeg}/bin/ffmpeg';
|
||||||
|
$wgExiftool = '${pkgs.exiftool}/bin/exiftool';
|
||||||
|
$wgExiv2Command = '${pkgs.exiv2}/bin/exiv2';
|
||||||
|
# See https://gist.github.com/sergejmueller/088dce028b6dd120a16e
|
||||||
|
$wgJpegTran = '${pkgs.mozjpeg}/bin/jpegtran';
|
||||||
|
$wgGitBin = '${pkgs.git}/bin/git';
|
||||||
|
|
||||||
|
# Debugging
|
||||||
|
$wgShowExceptionDetails = false;
|
||||||
|
$wgShowIPinHeader = false;
|
||||||
|
|
||||||
|
# EXT:{SimpleSAML,PluggableAuth}
|
||||||
$wgSimpleSAMLphp_InstallDir = "${simplesamlphp}/share/php/simplesamlphp/";
|
$wgSimpleSAMLphp_InstallDir = "${simplesamlphp}/share/php/simplesamlphp/";
|
||||||
$wgPluggableAuth_Config['Log in using my SAML'] = [
|
$wgPluggableAuth_Config['Log in using SAML'] = [
|
||||||
'plugin' => 'SimpleSAMLphp',
|
'plugin' => 'SimpleSAMLphp',
|
||||||
'data' => [
|
'data' => [
|
||||||
'authSourceId' => 'default-sp',
|
'authSourceId' => 'default-sp',
|
||||||
|
@ -135,12 +163,12 @@ in {
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
||||||
# Debugging
|
# EXT:Scribunto
|
||||||
$wgShowExceptionDetails = false;
|
$wgScribuntoDefaultEngine = 'luastandalone';
|
||||||
$wgShowIPinHeader = false;
|
$wgScribuntoEngineConf['luastandalone']['luaPath'] = '${pkgs.lua}/bin';
|
||||||
|
|
||||||
# Fix https://github.com/NixOS/nixpkgs/issues/183097
|
# EXT:WikiEditor
|
||||||
$wgDBserver = "${toString cfg.database.host}";
|
$wgWikiEditorRealtimePreview = true;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,95 @@
|
||||||
{ pkgs, lib }:
|
{ pkgs, lib }:
|
||||||
{
|
let
|
||||||
DeleteBatch = pkgs.callPackage ./delete-batch { };
|
kebab-case-name = project-name: lib.pipe project-name [
|
||||||
PluggableAuth = pkgs.callPackage ./pluggable-auth { };
|
(builtins.replaceStrings
|
||||||
SimpleSAMLphp = pkgs.callPackage ./simple-saml-php { };
|
lib.upperChars
|
||||||
UserMerge = pkgs.callPackage ./user-merge { };
|
(map (x: "-${x}") lib.lowerChars)
|
||||||
VisualEditor = pkgs.callPackage ./visual-editor { };
|
)
|
||||||
}
|
(lib.removePrefix "-")
|
||||||
|
];
|
||||||
|
|
||||||
|
mw-ext = {
|
||||||
|
name
|
||||||
|
, commit
|
||||||
|
, hash
|
||||||
|
, tracking-branch ? "REL1_41"
|
||||||
|
, kebab-name ? kebab-case-name name
|
||||||
|
, fetchgit ? pkgs.fetchgit
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
${name} = (fetchgit {
|
||||||
|
name = "mediawiki-${kebab-name}-source";
|
||||||
|
url = "https://gerrit.wikimedia.org/r/mediawiki/extensions/${name}";
|
||||||
|
rev = commit;
|
||||||
|
inherit hash;
|
||||||
|
}).overrideAttrs (_: {
|
||||||
|
passthru = { inherit name kebab-name tracking-branch; };
|
||||||
|
});
|
||||||
|
};
|
||||||
|
in
|
||||||
|
# NOTE: to add another extension, you can add an mw-ext expression
|
||||||
|
# with an empty (or even wrong) commit and empty hash, and
|
||||||
|
# run the update script
|
||||||
|
lib.mergeAttrsList [
|
||||||
|
(mw-ext {
|
||||||
|
name = "CodeEditor";
|
||||||
|
commit = "7d8447035e381d76387e38b92e4d1e2b8d373a01";
|
||||||
|
hash = "sha256-v2AlbP0vZma3qZyEAWGjZ/rLcvOpIMroyc1EixKjlAU=";
|
||||||
|
})
|
||||||
|
(mw-ext {
|
||||||
|
name = "CodeMirror";
|
||||||
|
commit = "a7b4541089f9b88a0b722d9d790e4cf0f13aa328";
|
||||||
|
hash = "sha256-clyzN3v3+J4GjdyhrCsytBrH7VR1tq5yd0rB+32eWCg=";
|
||||||
|
})
|
||||||
|
(mw-ext {
|
||||||
|
name = "DeleteBatch";
|
||||||
|
commit = "cad869fbd95637902673f744581b29e0f3e3f61a";
|
||||||
|
hash = "sha256-M1ek1WdO1/uTjeYlrk3Tz+nlb/fFZH+O0Ok7b10iKak=";
|
||||||
|
})
|
||||||
|
(mw-ext {
|
||||||
|
name = "PluggableAuth";
|
||||||
|
commit = "4111a57c34e25bde579cce5d14ea094021e450c8";
|
||||||
|
hash = "sha256-aPtN8A9gDxLlq2+EloRZBO0DfHtE0E5kbV/adk82jvM=";
|
||||||
|
})
|
||||||
|
(mw-ext {
|
||||||
|
name = "Popups";
|
||||||
|
commit = "f1bcadbd8b868f32ed189feff232c47966c2c49e";
|
||||||
|
hash = "sha256-PQAjq/X4ZYwnnZ6ADCp3uGWMIucJy0ZXxsTTbAyxlSE=";
|
||||||
|
})
|
||||||
|
(mw-ext {
|
||||||
|
name = "Scribunto";
|
||||||
|
commit = "7b99c95f588b06635ee3c487080d6cb04617d4b5";
|
||||||
|
hash = "sha256-pviueRHQAsSlv4AtnUpo2Cjci7CbJ5aM75taEXY+WrI=";
|
||||||
|
})
|
||||||
|
(mw-ext {
|
||||||
|
name = "SimpleSAMLphp";
|
||||||
|
kebab-name = "simple-saml-php";
|
||||||
|
commit = "ecb47191fecd1e0dc4c9d8b90a9118e393d82c23";
|
||||||
|
hash = "sha256-gKu+O49XrAVt6hXdt36Ru7snjsKX6g2CYJ0kk/d+CI8=";
|
||||||
|
})
|
||||||
|
(mw-ext {
|
||||||
|
name = "TemplateData";
|
||||||
|
commit = "1ec66ce80f8a4322138efa56864502d0ee069bad";
|
||||||
|
hash = "sha256-Lv3Lq9dYAtdgWcwelveTuOhkP38MTu0m5kmW8+ltRis=";
|
||||||
|
})
|
||||||
|
(mw-ext {
|
||||||
|
name = "TemplateStyles";
|
||||||
|
commit = "581180e898d6a942e2a65c8f13435a5d50fffa67";
|
||||||
|
hash = "sha256-zW8O0mzG4jYfQoKi2KzsP+8iwRCLnWgH7qfmDE2R+HU=";
|
||||||
|
})
|
||||||
|
(mw-ext {
|
||||||
|
name = "UserMerge";
|
||||||
|
commit = "c17c919bdb9b67bb69f80df43e9ee9d33b1ecf1b";
|
||||||
|
hash = "sha256-+mkzTCo8RVlGoFyfCrSb5YMh4J6Pbi1PZLFu5ps8bWY=";
|
||||||
|
})
|
||||||
|
(mw-ext {
|
||||||
|
name = "VisualEditor";
|
||||||
|
commit = "90bb3d455892e25317029ffd4bda93159e8faac8";
|
||||||
|
hash = "sha256-SZAVELQUKZtwSM6NVlxvIHdFPodko8fhZ/uwB0LCFDA=";
|
||||||
|
})
|
||||||
|
(mw-ext {
|
||||||
|
name = "WikiEditor";
|
||||||
|
commit = "8dba5b13246d7ae09193f87e6273432b3264de5f";
|
||||||
|
hash = "sha256-vF9PBuM+VfOIs/a2X1JcPn6WH4GqP/vUJDFkfXzWyFU=";
|
||||||
|
})
|
||||||
|
]
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
{ fetchgit }:
|
|
||||||
let
|
|
||||||
commit = "cad869fbd95637902673f744581b29e0f3e3f61a";
|
|
||||||
project-name = "DeleteBatch";
|
|
||||||
tracking-branch = "REL1_41";
|
|
||||||
in
|
|
||||||
(fetchgit {
|
|
||||||
name = "mediawiki-delete-batch-source";
|
|
||||||
url = "https://gerrit.wikimedia.org/r/mediawiki/extensions/${project-name}";
|
|
||||||
rev = "refs/heads/${tracking-branch}";
|
|
||||||
hash = "sha256-M1ek1WdO1/uTjeYlrk3Tz+nlb/fFZH+O0Ok7b10iKak=";
|
|
||||||
}).overrideAttrs (_: {
|
|
||||||
passthru = { inherit project-name tracking-branch; };
|
|
||||||
})
|
|
|
@ -1,14 +0,0 @@
|
||||||
{ fetchgit }:
|
|
||||||
let
|
|
||||||
commit = "4111a57c34e25bde579cce5d14ea094021e450c8";
|
|
||||||
project-name = "PluggableAuth";
|
|
||||||
tracking-branch = "REL1_41";
|
|
||||||
in
|
|
||||||
(fetchgit {
|
|
||||||
name = "mediawiki-pluggable-auth-source";
|
|
||||||
url = "https://gerrit.wikimedia.org/r/mediawiki/extensions/${project-name}";
|
|
||||||
rev = "refs/heads/${tracking-branch}";
|
|
||||||
hash = "sha256-aPtN8A9gDxLlq2+EloRZBO0DfHtE0E5kbV/adk82jvM=";
|
|
||||||
}).overrideAttrs (_: {
|
|
||||||
passthru = { inherit project-name tracking-branch; };
|
|
||||||
})
|
|
|
@ -1,14 +0,0 @@
|
||||||
{ fetchgit }:
|
|
||||||
let
|
|
||||||
commit = "ecb47191fecd1e0dc4c9d8b90a9118e393d82c23";
|
|
||||||
project-name = "SimpleSAMLphp";
|
|
||||||
tracking-branch = "REL1_41";
|
|
||||||
in
|
|
||||||
(fetchgit {
|
|
||||||
name = "mediawiki-simple-saml-php-source";
|
|
||||||
url = "https://gerrit.wikimedia.org/r/mediawiki/extensions/${project-name}";
|
|
||||||
rev = "refs/heads/${tracking-branch}";
|
|
||||||
hash = "sha256-gKu+O49XrAVt6hXdt36Ru7snjsKX6g2CYJ0kk/d+CI8=";
|
|
||||||
}).overrideAttrs (_: {
|
|
||||||
passthru = { inherit project-name tracking-branch; };
|
|
||||||
})
|
|
|
@ -8,49 +8,87 @@ import subprocess
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
from pprint import pprint
|
from pprint import pprint
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
|
from functools import cache
|
||||||
import json
|
import json
|
||||||
|
|
||||||
import bs4
|
import bs4
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
|
|
||||||
BASE_WEB_URL = "https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions"
|
BASE_WEB_URL = "https://gerrit.wikimedia.org/r/plugins/gitiles/mediawiki/extensions"
|
||||||
BASE_GIT_URL = "https://gerrit.wikimedia.org/r/mediawiki/extensions/"
|
BASE_GIT_URL = "https://gerrit.wikimedia.org/r/mediawiki/extensions/"
|
||||||
|
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
class PluginMetadata:
|
class PluginMetadata:
|
||||||
project_name: str
|
project_name: str
|
||||||
tracking_branch: str
|
tracking_branch: str | None
|
||||||
commit: str
|
commit: str
|
||||||
|
hash_: str
|
||||||
|
|
||||||
|
|
||||||
def get_metadata(file_content: str) -> dict[str,str] | None:
|
@cache
|
||||||
commit_search = re.search(f'commit = "([^"]*?)";', file_content)
|
def get_package_listing_path():
|
||||||
tracking_branch_search = re.search(f'tracking-branch = "([^"]+?)";', file_content)
|
return Path(__file__).parent / "default.nix"
|
||||||
project_name_search = re.search(f'project-name = "([^"]+?)";', file_content)
|
|
||||||
if commit_search is None:
|
|
||||||
print("Could not find commit in file:")
|
@cache
|
||||||
print(file_content)
|
def get_global_tracking_branch() -> str:
|
||||||
return None
|
with open(get_package_listing_path()) as file:
|
||||||
if tracking_branch_search is None:
|
file_content = file.read()
|
||||||
print("Could not find tracking branch in file:")
|
return re.search(r'\btracking-branch\b \? "([^"]+?)"', file_content).group(1)
|
||||||
print(file_content)
|
|
||||||
return None
|
|
||||||
|
def get_metadata(package_expression: str) -> PluginMetadata | None:
|
||||||
|
project_name_search = re.search(r'\bname\b = "([^"]+?)";', package_expression)
|
||||||
|
tracking_branch_search = re.search(r'\btracking-branch\b = "([^"]+?)";', package_expression)
|
||||||
|
commit_search = re.search(r'\bcommit\b = "([^"]*?)";', package_expression)
|
||||||
|
hash_search = re.search(r'\bhash\b = "([^"]*?)";', package_expression)
|
||||||
|
|
||||||
if project_name_search is None:
|
if project_name_search is None:
|
||||||
print("Could not find project name in file:")
|
print("Could not find project name in package:")
|
||||||
print(file_content)
|
print(package_expression)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
tracking_branch = None;
|
||||||
|
if tracking_branch_search is not None:
|
||||||
|
tracking_branch = tracking_branch_search.group(1)
|
||||||
|
|
||||||
|
if commit_search is None:
|
||||||
|
print("Could not find commit in package:")
|
||||||
|
print(package_expression)
|
||||||
|
return None
|
||||||
|
|
||||||
|
if hash_search is None:
|
||||||
|
print("Could not find hash in package:")
|
||||||
|
print(package_expression)
|
||||||
|
return None
|
||||||
|
|
||||||
return PluginMetadata(
|
return PluginMetadata(
|
||||||
commit = commit_search.group(1),
|
commit = commit_search.group(1),
|
||||||
tracking_branch = tracking_branch_search.group(1),
|
tracking_branch = tracking_branch,
|
||||||
project_name = project_name_search.group(1),
|
project_name = project_name_search.group(1),
|
||||||
|
hash_ = hash_search.group(1),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def update_metadata(package_expression: str, metadata: PluginMetadata) -> str:
|
||||||
|
result = package_expression
|
||||||
|
result = re.sub(r'\bcommit\b = "[^"]*";', f'commit = "{metadata.commit}";', result)
|
||||||
|
result = re.sub(r'\bhash\b = "[^"]*";', f'hash = "{metadata.hash_}";', result)
|
||||||
|
return result
|
||||||
|
|
||||||
|
|
||||||
def get_newest_commit(project_name: str, tracking_branch: str) -> str:
|
def get_newest_commit(project_name: str, tracking_branch: str) -> str:
|
||||||
content = requests.get(f"{BASE_WEB_URL}/{project_name}/+log/refs/heads/{tracking_branch}/").text
|
content = requests.get(f"{BASE_WEB_URL}/{project_name}/+log/refs/heads/{tracking_branch}/").text
|
||||||
soup = bs4.BeautifulSoup(content, features="html.parser")
|
soup = bs4.BeautifulSoup(content, features="html.parser")
|
||||||
a = soup.find('li').findChild('a')
|
try:
|
||||||
commit_sha = a['href'].split('/')[-1]
|
a = soup.find('li').findChild('a')
|
||||||
|
commit_sha = a['href'].split('/')[-1]
|
||||||
|
except AttributeError:
|
||||||
|
print(f"ERROR: Could not parse page for {project_name}:")
|
||||||
|
print(soup.prettify())
|
||||||
|
exit(1)
|
||||||
return commit_sha
|
return commit_sha
|
||||||
|
|
||||||
|
|
||||||
|
@ -64,40 +102,54 @@ def get_nix_hash(url: str, commit: str) -> str:
|
||||||
return json.loads(out.decode().strip())['hash']
|
return json.loads(out.decode().strip())['hash']
|
||||||
|
|
||||||
|
|
||||||
def set_commit_and_hash(file_content: str, commit: str, sha256: str) -> str:
|
def update_expression(package_expression: str) -> str:
|
||||||
result = file_content
|
old_metadata = get_metadata(package_expression)
|
||||||
result = re.sub('commit = "[^"]*";', f'commit = "{commit}";', result)
|
if old_metadata is None:
|
||||||
result = re.sub('hash = "[^"]*";', f'hash = "{sha256}";', result)
|
print("ERROR: could not find metadata for expression:")
|
||||||
return result
|
print(package_expression)
|
||||||
|
|
||||||
def update(package_file: Path) -> None:
|
|
||||||
with open(package_file) as file:
|
|
||||||
file_content = file.read()
|
|
||||||
|
|
||||||
metadata = get_metadata(file_content)
|
|
||||||
if metadata is None:
|
|
||||||
print(f"ERROR: could not find metadata for {package_file}")
|
|
||||||
return
|
return
|
||||||
if metadata.commit == "":
|
|
||||||
metadata.commit = "<none>"
|
|
||||||
|
|
||||||
new_commit = get_newest_commit(metadata.project_name, metadata.tracking_branch)
|
if old_metadata.commit == "":
|
||||||
new_hash = get_nix_hash(f"{BASE_GIT_URL}/{metadata.project_name}", new_commit)
|
old_metadata.commit = "<none>"
|
||||||
|
if old_metadata.hash_ == "":
|
||||||
|
old_metadata.hash_ = "<none>"
|
||||||
|
|
||||||
|
tracking_branch = old_metadata.tracking_branch
|
||||||
|
if tracking_branch is None:
|
||||||
|
tracking_branch = get_global_tracking_branch()
|
||||||
|
|
||||||
|
new_commit = get_newest_commit(old_metadata.project_name, tracking_branch)
|
||||||
|
new_hash = get_nix_hash(f"{BASE_GIT_URL}/{old_metadata.project_name}", new_commit)
|
||||||
if new_hash is None or new_hash == "":
|
if new_hash is None or new_hash == "":
|
||||||
print(f"ERROR: could not fetch hash for {metadata.project_name}")
|
print(f"ERROR: could not fetch hash for {old_metadata.project_name}")
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
print(f"Updating {metadata.project_name}: {metadata.commit} -> {new_commit}")
|
print(f"Updating {old_metadata.project_name}[{tracking_branch}]: {old_metadata.commit} -> {new_commit}")
|
||||||
|
|
||||||
new_file_content = set_commit_and_hash(file_content, new_commit, new_hash)
|
new_metadata = PluginMetadata(
|
||||||
|
project_name = old_metadata.project_name,
|
||||||
|
tracking_branch = old_metadata.tracking_branch,
|
||||||
|
commit = new_commit,
|
||||||
|
hash_ = new_hash,
|
||||||
|
)
|
||||||
|
|
||||||
with open(package_file, 'w') as file:
|
return update_metadata(package_expression, new_metadata)
|
||||||
|
|
||||||
|
|
||||||
|
def update_all_expressions_in_default_nix() -> None:
|
||||||
|
with open(get_package_listing_path()) as file:
|
||||||
|
file_content = file.read()
|
||||||
|
|
||||||
|
new_file_content = re.sub(
|
||||||
|
r"\(mw-ext\s*\{(?:.|\n)+?\}\)",
|
||||||
|
lambda m: update_expression(m.group(0)),
|
||||||
|
file_content,
|
||||||
|
flags = re.MULTILINE,
|
||||||
|
)
|
||||||
|
|
||||||
|
with open(get_package_listing_path(), 'w') as file:
|
||||||
file.write(new_file_content)
|
file.write(new_file_content)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
for direntry in os.scandir(Path(__file__).parent):
|
update_all_expressions_in_default_nix()
|
||||||
if direntry.is_dir():
|
|
||||||
package_file = Path(direntry) / "default.nix"
|
|
||||||
assert package_file.is_file()
|
|
||||||
update(package_file)
|
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
{ fetchgit }:
|
|
||||||
let
|
|
||||||
commit = "c17c919bdb9b67bb69f80df43e9ee9d33b1ecf1b";
|
|
||||||
project-name = "UserMerge";
|
|
||||||
tracking-branch = "REL1_41";
|
|
||||||
in
|
|
||||||
(fetchgit {
|
|
||||||
name = "mediawiki-user-merge-source";
|
|
||||||
url = "https://gerrit.wikimedia.org/r/mediawiki/extensions/${project-name}";
|
|
||||||
rev = "refs/heads/${tracking-branch}";
|
|
||||||
hash = "sha256-+mkzTCo8RVlGoFyfCrSb5YMh4J6Pbi1PZLFu5ps8bWY=";
|
|
||||||
}).overrideAttrs (_: {
|
|
||||||
passthru = { inherit project-name tracking-branch; };
|
|
||||||
})
|
|
|
@ -1,14 +0,0 @@
|
||||||
{ fetchgit }:
|
|
||||||
let
|
|
||||||
commit = "170d19aad1f28dc6bd3f98ee277680cabba9db0c";
|
|
||||||
project-name = "VisualEditor";
|
|
||||||
tracking-branch = "REL1_41";
|
|
||||||
in
|
|
||||||
(fetchgit {
|
|
||||||
name = "mediawiki-visual-editor-source";
|
|
||||||
url = "https://gerrit.wikimedia.org/r/mediawiki/extensions/${project-name}";
|
|
||||||
rev = "refs/heads/${tracking-branch}";
|
|
||||||
hash = "sha256-5WVlO/OEk4eln5j/w4Tu/MXSmlvjIn7l6H+OTPaV+t4=";
|
|
||||||
}).overrideAttrs (_: {
|
|
||||||
passthru = { inherit project-name tracking-branch; };
|
|
||||||
})
|
|
Loading…
Reference in New Issue