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.3.2.0 -> 0.4.0.4 #78790

Closed
wants to merge 1 commit into from
Closed
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
28 changes: 15 additions & 13 deletions pkgs/applications/misc/super_user_spark/default.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{ mkDerivation, fetchgit, aeson, aeson-pretty, base, bytestring, directory
, filepath, hspec, hspec-core, HUnit, mtl, optparse-applicative
, parsec, process, pureMD5, QuickCheck, shelly, stdenv, text
, transformers, unix
{ mkDerivation, aeson, aeson-pretty, base, bytestring, directory
, filepath, fetchgit, genvalidity, genvalidity-hspec, genvalidity-hspec-aeson
, genvalidity-path, hashable, hspec, hspec-core, mtl
, optparse-applicative, parsec, path, path-io, process, QuickCheck
, stdenv, text, transformers, unix, validity, validity-path
}:
mkDerivation {
pname = "super-user-spark";
version = "0.3.2.0-dev";
version = "0.4.0.4";
src = fetchgit {
url = "https://github.com/NorfairKing/super-user-spark";
sha256 = "0akyc51bghzkk8j75n0i8v8rrsklidwvljhx3aibxfbkqp33372g";
Expand All @@ -14,19 +15,20 @@ mkDerivation {
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson aeson-pretty base bytestring directory filepath mtl
optparse-applicative parsec process pureMD5 shelly text
transformers unix
aeson aeson-pretty base bytestring directory filepath hashable mtl
optparse-applicative parsec path path-io process text unix validity
validity-path
];
executableHaskellDepends = [ base ];
testHaskellDepends = [
aeson aeson-pretty base bytestring directory filepath hspec
hspec-core HUnit mtl optparse-applicative parsec process pureMD5
QuickCheck shelly text transformers unix
aeson aeson-pretty base bytestring directory filepath genvalidity
genvalidity-hspec genvalidity-hspec-aeson genvalidity-path hashable
hspec hspec-core mtl optparse-applicative parsec path path-io
process QuickCheck text transformers unix validity validity-path
];
jailbreak = true;
homepage = "https://github.com/NorfairKing/super-user-spark";
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 ];
}