summaryrefslogtreecommitdiff
path: root/package.nix
blob: 779cc1565e3964e143cf8d184350c476d8c44010 (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 = "1xglwl23mwldlzmhkbb8qx0xkx876dvnjzdg0b8c202gp6dc0icb";
  };
})