Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

super-user-spark: 0.1.0.0 -> 0.2.0.3 #11694

Merged
merged 1 commit into from
Dec 14, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 18 additions & 20 deletions pkgs/applications/misc/super_user_spark/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
}