summary refs log tree commit diff
path: root/pkgs/applications/misc/super_user_spark
diff options
context:
space:
mode:
authorBadi' Abdul-Wahid <abdulwahidc@gmail.com>2015-12-13 19:33:47 -0500
committerBadi' Abdul-Wahid <abdulwahidc@gmail.com>2015-12-13 20:26:09 -0500
commit618414ff46c69bdd29294f2db79a890648b9fdb2 (patch)
tree694681023050cc7d3ee65aafb87d8fa852b39378 /pkgs/applications/misc/super_user_spark
parent10b8c8496a1361a607853088b47f3a14255bddb2 (diff)
downloadnixlib-618414ff46c69bdd29294f2db79a890648b9fdb2.tar
nixlib-618414ff46c69bdd29294f2db79a890648b9fdb2.tar.gz
nixlib-618414ff46c69bdd29294f2db79a890648b9fdb2.tar.bz2
nixlib-618414ff46c69bdd29294f2db79a890648b9fdb2.tar.lz
nixlib-618414ff46c69bdd29294f2db79a890648b9fdb2.tar.xz
nixlib-618414ff46c69bdd29294f2db79a890648b9fdb2.tar.zst
nixlib-618414ff46c69bdd29294f2db79a890648b9fdb2.zip
super-user-spark: 0.1.0.0 -> 0.2.0.3
Diffstat (limited to 'pkgs/applications/misc/super_user_spark')
-rw-r--r--pkgs/applications/misc/super_user_spark/default.nix38
1 files changed, 18 insertions, 20 deletions
diff --git a/pkgs/applications/misc/super_user_spark/default.nix b/pkgs/applications/misc/super_user_spark/default.nix
index 73a9e343df9b..0b89e6a61528 100644
--- a/pkgs/applications/misc/super_user_spark/default.nix
+++ b/pkgs/applications/misc/super_user_spark/default.nix
@@ -1,33 +1,31 @@
-{ mkDerivation, fetchurl, ghc, aeson, aeson-pretty, base, binary, bytestring
-, directory, filepath, HTF, HUnit, mtl, parsec, process, shelly
-, stdenv, text, transformers, unix, xdg-basedir
-, happy
+{ mkDerivation, aeson, aeson-pretty, base, binary, bytestring
+, directory, fetchgit, filepath, HTF, HUnit, mtl
+, optparse-applicative, parsec, process, shelly, stdenv, text
+, transformers, unix, zlib
 }:
-
-mkDerivation rec {
+mkDerivation {
   pname = "super-user-spark";
-  version = "0.1.0.0";
-
-  src = fetchurl {
-    url = "https://github.com/NorfairKing/super-user-spark/archive/v0.1.tar.gz";
-    sha256 = "90258cb2d38f35b03867fdf82dbd49500cdec04f3cf05d0eaa18592cb44fe13f";
+  version = "0.2.0.3";
+  src = fetchgit {
+    url = "https://github.com/NorfairKing/super-user-spark";
+    sha256 = "718b6760e76377aa37b145d0dff690b293325b510ce05d239c4fa28538420931";
+    rev = "a7d132f7631649c3a093ede286e66f78e9793fba";
   };
-
   isLibrary = false;
   isExecutable = true;
-  jailbreak = true;
-
-  buildDepends = [
+  executableHaskellDepends = [
     aeson aeson-pretty base binary bytestring directory filepath HTF
-    mtl parsec process shelly text transformers unix xdg-basedir happy
+    mtl optparse-applicative parsec process shelly text transformers
+    unix zlib
   ];
-  testDepends = [
+  testHaskellDepends = [
     aeson aeson-pretty base binary bytestring directory filepath HTF
-    HUnit mtl parsec process shelly text transformers unix xdg-basedir
+    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";
-  description = "A safe way to never worry about your beautifully configured system again";
-  platforms = ghc.meta.platforms;
   maintainers = [ stdenv.lib.maintainers.badi ];
 }