nixpkgs/pkgs/applications/misc/super_user_spark/default.nix

32 lines
1.1 KiB
Nix
Raw Normal View History

2015-12-14 00:33:47 +00:00
{ mkDerivation, aeson, aeson-pretty, base, binary, bytestring
, directory, fetchgit, filepath, HTF, HUnit, mtl
, optparse-applicative, parsec, process, shelly, stdenv, text
, transformers, unix, zlib
}:
2015-12-14 00:33:47 +00:00
mkDerivation {
pname = "super-user-spark";
2015-12-14 00:33:47 +00:00
version = "0.2.0.3";
src = fetchgit {
url = "https://github.com/NorfairKing/super-user-spark";
sha256 = "1w9c2b1fxqxp2q5jxsvnrfqvyvpk8q70qqsgzshmghx0yylx9cns";
2015-12-14 00:33:47 +00:00
rev = "a7d132f7631649c3a093ede286e66f78e9793fba";
};
isLibrary = false;
isExecutable = true;
2015-12-14 00:33:47 +00:00
executableHaskellDepends = [
aeson aeson-pretty base binary bytestring directory filepath HTF
2015-12-14 00:33:47 +00:00
mtl optparse-applicative parsec process shelly text transformers
unix zlib
];
2015-12-14 00:33:47 +00:00
testHaskellDepends = [
aeson aeson-pretty base binary bytestring directory filepath HTF
2015-12-14 00:33:47 +00:00
HUnit mtl optparse-applicative parsec process shelly text
transformers unix zlib
];
2015-12-14 00:33:47 +00:00
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 ];
}