-
Notifications
You must be signed in to change notification settings - Fork 1
/
shell.nix
37 lines (30 loc) · 1.24 KB
/
shell.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ nixpkgs ? import <nixpkgs> {}, compiler ? "default" }:
let
inherit (nixpkgs) pkgs;
f = { mkDerivation, acid-state, attoparsec, base, blaze-html
, cereal, clckwrks, containers, directory, filepath, gd
, happstack-server, hsp, hsx2hs, ixset, magic, mtl, reform
, reform-happstack, reform-hsp, safecopy, stdenv, text, web-plugins
, web-routes, web-routes-th, cabal-install
}:
mkDerivation {
pname = "clckwrks-plugin-media";
version = "0.6.15";
src = ./.;
libraryHaskellDepends = [
acid-state attoparsec base blaze-html cereal clckwrks containers
directory filepath gd happstack-server hsp ixset magic mtl reform
reform-happstack reform-hsp safecopy text web-plugins web-routes
web-routes-th cabal-install
];
libraryToolDepends = [ hsx2hs ];
homepage = "http://clckwrks.com/";
description = "media plugin for clckwrks";
license = stdenv.lib.licenses.bsd3;
};
haskellPackages = if compiler == "default"
then pkgs.haskellPackages
else pkgs.haskell.packages.${compiler};
drv = haskellPackages.callPackage f {};
in
if pkgs.lib.inNixShell then drv.env else drv