summaryrefslogtreecommitdiff
path: root/pack
diff options
context:
space:
mode:
Diffstat (limited to 'pack')
-rw-r--r--pack/default.nix5
-rw-r--r--pack/duree.nix33
2 files changed, 36 insertions, 2 deletions
diff --git a/pack/default.nix b/pack/default.nix
index a5a1313..3e7ff2d 100644
--- a/pack/default.nix
+++ b/pack/default.nix
@@ -2,8 +2,9 @@
}:
{
- fathom = import ./fathom.nix { inherit nixpkgs; };
- ibb = import ./ibb.nix { inherit nixpkgs; };
bs = import ./bs.nix { inherit nixpkgs; };
cmdwave = import ./cmdwave.nix { inherit nixpkgs; };
+ duree = import ./duree.nix { inherit nixpkgs; };
+ fathom = import ./fathom.nix { inherit nixpkgs; };
+ ibb = import ./ibb.nix { inherit nixpkgs; };
}
diff --git a/pack/duree.nix b/pack/duree.nix
new file mode 100644
index 0000000..84b82da
--- /dev/null
+++ b/pack/duree.nix
@@ -0,0 +1,33 @@
+{ nixpkgs }:
+with nixpkgs;
+let
+ ghc = pkgs.haskell.packages.ghc844.ghcWithPackages (hp: with hp; [
+ hinotify
+
+ mongoDB
+ mtl
+ protolude
+ text
+ transformers
+ ]);
+ entrypoint = "Duree";
+in
+stdenv.mkDerivation rec {
+ name = "duree";
+ version = "0";
+ src = ../.;
+ nativeBuildInputs = [
+ ghc
+ ];
+ strictDeps = true;
+ buildPhase = ''
+ ${ghc}/bin/ghc \
+ -iapex -ilore \
+ -main-is ${entrypoint} --make apex/${entrypoint}.hs \
+ -o bild/${name}
+ '';
+ installPhase = ''
+ mkdir -p $out/bin
+ cp bild/${name} $out/bin/${name}
+ '';
+}