You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
480 B
Nix

8 years ago
{ nixpkgs ? import <nixpkgs> { }
, ghc ? nixpkgs.ghc
}:
with nixpkgs;
let
version = "2017-03-03";
8 years ago
in
haskell.lib.buildStackProject {
name = "himes-${version}";
src = fetchgit {
url = "https://gogs.prunetwork.fr/HIMES/himes.git";
rev = "458ea4de7a21eb1aba93db8139779cfabcfb0dcd";
sha256 = "1yfby6hb7lg7z6kc3y0084rzhz3kyyjsgs1qgzjfr0vs5r6v9ddn";
};
#buildInputs = [ stack himes-src];
buildInputs = [ stack ];
8 years ago
inherit ghc;
}
#stdenv.mkDerivation rec {