forked from ruHaskell/ruhaskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell.nix
21 lines (21 loc) · 805 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, base, blaze-html, BlogLiterately, containers
, filepath, hakyll, HTTP, mtl, old-locale, split, stdenv
}:
mkDerivation {
pname = "ruHaskell";
version = "0.1.0.0";
sha256 = "0";
isLibrary = false;
isExecutable = true;
buildDepends = [
base blaze-html BlogLiterately containers filepath hakyll HTTP mtl
old-locale split
];
homepage = "http://haskell.ru";
description = "Russian community of Haskell-developers";
license = stdenv.lib.licenses.unfree;
}) {};
in
pkg.env