gpm/shell.nix
Yann Esposito (Yogsototh) a78c2c7a1c
shell.nix
2018-08-29 23:15:58 +02:00

13 lines
No EOL
404 B
Nix

let
rev = "16d475334409f7fa632929b2838421b4ffe34927";
_nixpkgs = import <nixpkgs> { };
pkgs = import ( fetchTarball "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz" ) { };
ghc = pkgs.haskellPackages;
ghcPackages = ghc.ghcWithPackages (ps: [ ps.protolude ps.turtle ]);
in with pkgs;
stdenv.mkDerivation {
name = "gpm";
buildInputs = [ ghcPackages ];
buildDepends = [ libiconv ];
}