summaryrefslogtreecommitdiff
path: root/package.nix
blob: a2b7d4b0e111a0bc41ab0dcb352443416bb4165b (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 = "415f3cd98436807242e082b9c11dd89115e01f78";
    sha256 = "3ed82d9e8145b1472886cccfa05a3b0d7a9f04921fbee6719a035d3da7b010ef";
  };
})