-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nixpkgs' npins source generation using nixpkgs fetchers doesn't suppo…
…rt git correctly
- Loading branch information
Showing
5 changed files
with
77 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# Based off of: | ||
# https://github.com/NixOS/nixpkgs/blob/776c3bee4769c616479393aeefceefeda16b6fcb/pkgs/tools/nix/npins/source.nix | ||
{ | ||
lib, | ||
fetchurl, | ||
fetchgit, | ||
fetchzip, | ||
}: | ||
builtins.mapAttrs ( | ||
_: | ||
let | ||
getZip = | ||
{ url, hash, ... }: | ||
fetchzip { | ||
inherit url; | ||
sha256 = hash; | ||
extension = "tar"; | ||
|
||
}; | ||
mkGitSource = | ||
{ | ||
repository, | ||
revision, | ||
url ? null, | ||
hash, | ||
... | ||
}@attrs: | ||
assert repository ? type; | ||
if url != null then | ||
getZip attrs | ||
else | ||
assert repository.type == "Git"; | ||
let | ||
urlToName = | ||
url: rev: | ||
let | ||
matched = builtins.match "^.*/([^/]*)(\\.git)?$" repository.url; | ||
short = builtins.substring 0 7 rev; | ||
appendShort = if (builtins.match "[a-f0-9]*" rev) != null then "-${short}" else ""; | ||
in | ||
"${if matched == null then "source" else builtins.head matched}${appendShort}"; | ||
name = urlToName repository.url revision; | ||
in | ||
fetchgit { | ||
inherit name; | ||
inherit (repository) url; | ||
rev = revision; | ||
sha256 = hash; | ||
}; | ||
|
||
mkPyPiSource = | ||
{ url, hash, ... }: | ||
fetchurl { | ||
inherit url; | ||
sha256 = hash; | ||
}; | ||
in | ||
spec: | ||
assert spec ? type; | ||
let | ||
func = | ||
{ | ||
Git = mkGitSource; | ||
GitRelease = mkGitSource; | ||
PyPi = mkPyPiSource; | ||
Channel = getZip; | ||
} | ||
.${spec.type} or (builtins.throw "Unknown source type ${spec.type}"); | ||
in | ||
spec // { outPath = func spec; } | ||
|
||
) (lib.importJSON ./sources.json).pins |