summaryrefslogtreecommitdiff
path: root/package.nix
blob: c8d846b0a5b7e302d2c9ce391536a438300694b3 (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 = "42d741a0cd916db098aac079b21bd513768f6f75";
    sha256 = "0mq8zx273glq95w7afr9ba5pjhd8drvh04fl25h1pvnj71zfkqcz";
  };
})