-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell.nix
37 lines (30 loc) · 1.2 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, aeson, base, byteable, bytestring, containers
, cryptohash, hspec, lens, lens-aeson, mime, network-uri
, old-locale, shakespeare, stdenv, text, time, transformers
, unordered-containers, yesod, yesod-core, yesod-form, yesod-test
}:
mkDerivation {
pname = "yesod-transloadit";
version = "0.7.1.0";
src = ./.;
libraryHaskellDepends = [
aeson base byteable bytestring cryptohash lens lens-aeson mime
network-uri old-locale shakespeare text time transformers
unordered-containers yesod yesod-core yesod-form
];
testHaskellDepends = [
aeson base containers hspec mime network-uri old-locale text yesod
yesod-form yesod-test
];
description = "Transloadit support for Yesod";
license = stdenv.lib.licenses.mit;
};
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