blob: 7a7965ade6a045ccf0ed1edd7c4f6b5d91906feb (
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 = "73ba4b385cebb1d904caf8dc8b93ca78b7fc474d";
sha256 = "de42f092e701b7944c75b9755c416f8975899893cebbff088ecdd98ad450ecb0";
};
})
|