super-user-spark: init at 0.1.0.0 (close #8894)

Super-User-Spark is a program for managing dotfiles.
The author is Tom Sydney Kerckhove.

Details on usage can be found on his [blogpost] as well as the [reddit thread].

[blogpost]: http://cs-syd.eu/posts/2015-07-19-super-user-spark.html
[reddit thread]: http://www.reddit.com/r/haskell/comments/3dsdi5/more_than_just_another_symlink_manager_written_in/
This commit is contained in:
Vladimír Čunát 2015-07-30 19:13:56 +02:00
parent 19c6cf7756
commit 7c291e2e59
3 changed files with 36 additions and 0 deletions

View file

@ -33,6 +33,7 @@
auntie = "Jonathan Glines <auntieNeo@gmail.com>";
avnik = "Alexander V. Nikolaev <avn@avnik.info>";
aycanirican = "Aycan iRiCAN <iricanaycan@gmail.com>";
badi = "Badi' Abdul-Wahid <abdulwahidc@gmail.com>";
balajisivaraman = "Balaji Sivaraman<sivaraman.balaji@gmail.com>";
bbenoist = "Baptist BENOIST <return_0@live.com>";
bcarrell = "Brandon Carrell <brandoncarrell@gmail.com>";

View file

@ -0,0 +1,33 @@
{ 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 rec {
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";
};
isLibrary = false;
isExecutable = true;
jailbreak = true;
buildDepends = [
aeson aeson-pretty base binary bytestring directory filepath HTF
mtl parsec process shelly text transformers unix xdg-basedir happy
];
testDepends = [
aeson aeson-pretty base binary bytestring directory filepath HTF
HUnit mtl parsec process shelly text transformers unix xdg-basedir
];
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;
}

View file

@ -3036,6 +3036,8 @@ let
super = callPackage ../tools/security/super { };
super-user-spark = haskellPackages.callPackage ../applications/misc/super_user_spark { };
ssdeep = callPackage ../tools/security/ssdeep { };
sshpass = callPackage ../tools/networking/sshpass { };