summaryrefslogtreecommitdiff
path: root/package.nix
blob: b723fd8f7bb0d4668d4b70628923896cbc2ff217 (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 = "e9c853ae07e1ae922f7e70fe858ce0a6e5782343";
    sha256 = "1mzlak022n034ipacj8nap21phgmbvmaiw64g4qa3fz6lybfcky6";
  };
})