-
Notifications
You must be signed in to change notification settings - Fork 1
/
shell.nix
21 lines (21 loc) · 910 Bytes
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
with (import <nixpkgs> {}).pkgs;
let pkg = haskellngPackages.callPackage
({ mkDerivation, aeson, base, bytestring, devadmin, directory
, filepath, hashable, hslogger, HStringTemplate, LHE-sanitizer, mtl
, process, stdenv, text, transformers, unix, unordered-containers
, webdav-manager
}:
mkDerivation {
pname = "madgraph-auto";
version = "0.999";
src = ./.;
buildDepends = [
aeson base bytestring devadmin directory filepath hashable hslogger
HStringTemplate LHE-sanitizer mtl process text transformers unix
unordered-containers webdav-manager
];
description = "automated program library for madgraph run";
license = stdenv.lib.licenses.gpl3;
}) {};
in
pkg.env