forked from ruHaskell/ruhaskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
shell.nix
21 lines (21 loc) · 865 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, blaze-html, clay, containers, filepath, hakyll
, mtl, pandoc, split, string-qq, text, time, unordered-containers, stdenv
}:
mkDerivation {
pname = "ruHaskell";
version = "0.2.0.0";
sha256 = "0";
isLibrary = false;
isExecutable = true;
buildDepends = [
aeson base blaze-html clay containers filepath hakyll mtl
pandoc split string-qq text time unordered-containers
];
homepage = "http://ruhaskell.org";
description = "Russian community of Haskell-developers";
license = stdenv.lib.licenses.mit;
}) {};
in
pkg.env