summary refs log tree commit diff
path: root/pkgs/applications/misc/super_user_spark/default.nix
blob: 0b89e6a61528e2cc9690219903bfec7889231a04 (plain) (blame)
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
{ mkDerivation, aeson, aeson-pretty, base, binary, bytestring
, directory, fetchgit, filepath, HTF, HUnit, mtl
, optparse-applicative, parsec, process, shelly, stdenv, text
, transformers, unix, zlib
}:
mkDerivation {
  pname = "super-user-spark";
  version = "0.2.0.3";
  src = fetchgit {
    url = "https://github.com/NorfairKing/super-user-spark";
    sha256 = "718b6760e76377aa37b145d0dff690b293325b510ce05d239c4fa28538420931";
    rev = "a7d132f7631649c3a093ede286e66f78e9793fba";
  };
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    aeson aeson-pretty base binary bytestring directory filepath HTF
    mtl optparse-applicative parsec process shelly text transformers
    unix zlib
  ];
  testHaskellDepends = [
    aeson aeson-pretty base binary bytestring directory filepath HTF
    HUnit mtl optparse-applicative parsec process shelly text
    transformers unix zlib
  ];
  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 ];
}