-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathshell.nix
More file actions
20 lines (20 loc) · 821 Bytes
/
shell.nix
File metadata and controls
20 lines (20 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
with (import <nixpkgs> {}).pkgs;
let pkg = haskellPackages.callPackage
({ mkDerivation, base, clckwrks, happstack-authenticate, hsp
, hsx-jmacro, hsx2hs, jmacro, mtl, stdenv, text, web-plugins, cabal-install
}:
mkDerivation {
pname = "clckwrks-theme-bootstrap";
version = "0.4.0";
src = ./.;
buildDepends = [
base clckwrks happstack-authenticate hsp hsx-jmacro hsx2hs jmacro
mtl text web-plugins
];
buildTools = [ cabal-install ];
homepage = "http://www.clckwrks.com/";
description = "simple bootstrap based template for clckwrks";
license = stdenv.lib.licenses.bsd3;
}) {};
in
pkg.env