edcdd4b761
This updates super-user-spark to support the recent change in nixpkgs
of the haskellPackages to LTS 8.x using GHC 8.0.2 [1].
It also includes some recent changes to the super-user-spark package,
upgraded to commit ab86356 [2].
[1]: https://www.mail-archive.com/nix-dev@lists.science.uu.nl/msg31818.html
[2]: ab8635682d
32 lines
1.2 KiB
Nix
32 lines
1.2 KiB
Nix
{ mkDerivation, fetchgit, aeson, aeson-pretty, base, bytestring, directory
|
|
, filepath, hspec, hspec-core, HUnit, mtl, optparse-applicative
|
|
, parsec, process, pureMD5, QuickCheck, shelly, stdenv, text
|
|
, transformers, unix
|
|
}:
|
|
mkDerivation {
|
|
pname = "super-user-spark";
|
|
version = "0.3.2.0-dev";
|
|
src = fetchgit {
|
|
url = "https://github.com/NorfairKing/super-user-spark";
|
|
sha256 = "0akyc51bghzkk8j75n0i8v8rrsklidwvljhx3aibxfbkqp33372g";
|
|
rev = "ab8635682d67842b9e6d909cf3c618014e4157f2";
|
|
};
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
libraryHaskellDepends = [
|
|
aeson aeson-pretty base bytestring directory filepath mtl
|
|
optparse-applicative parsec process pureMD5 shelly text
|
|
transformers unix
|
|
];
|
|
executableHaskellDepends = [ base ];
|
|
testHaskellDepends = [
|
|
aeson aeson-pretty base bytestring directory filepath hspec
|
|
hspec-core HUnit mtl optparse-applicative parsec process pureMD5
|
|
QuickCheck shelly text transformers unix
|
|
];
|
|
jailbreak = true;
|
|
description = "Configure your dotfile deployment with a DSL";
|
|
license = stdenv.lib.licenses.mit;
|
|
homepage = "https://github.com/NorfairKing/super-user-spark";
|
|
maintainers = [ stdenv.lib.maintainers.badi ];
|
|
}
|