blob: 73e72e5991ff0741bad69580ae6b697569a2bf07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ fetchgit
, stdenv
, callPackage
}:
stdenv.lib.overrideDerivation (callPackage ./trivmix.nix {}) (attrs : {
src = fetchgit {
url = git://git.yggdrasil.li/trivmix;
# nix-shell -p nix-prefetch-scripts --command 'nix-prefetch-git git://git.yggdrasil.li/beuteltier' 2>&1 | grep -E '(git revision|hash) is ' | sed -r 's/git revision is /rev = "/' | sed -r 's/hash is /sha256 = "/' | sed -r 's/$/";/'
rev = "3e9a4410d19483aa9d77de40c71f4f0fd491a0bb";
sha256 = "6d7dc29c9bb97e4c8f4e011a08d4176aa8743becf7748f5dbbc057016f467c4a";
};
})
|