mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
daemons: add haskell pkg
This commit is contained in:
parent
3cecef15d7
commit
ea3292523c
2 changed files with 27 additions and 0 deletions
25
pkgs/development/libraries/haskell/daemons/default.nix
Normal file
25
pkgs/development/libraries/haskell/daemons/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, cereal, dataDefault, filepath, HUnit, network, pipes
|
||||
, testFramework, testFrameworkHunit, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "daemons";
|
||||
version = "0.2.1";
|
||||
sha256 = "0zf9831vl1hz606nsp0yhjg46wxzvwkd3hn9shjw5akk26sddi8p";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
cereal dataDefault filepath network pipes transformers
|
||||
];
|
||||
testDepends = [
|
||||
dataDefault HUnit testFramework testFrameworkHunit
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://github.com/scvalex/daemons";
|
||||
description = "Daemons in Haskell made fun and easy";
|
||||
license = self.stdenv.lib.licenses.gpl3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -558,6 +558,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||
|
||||
cpu = callPackage ../development/libraries/haskell/cpu {};
|
||||
|
||||
daemons = callPackage ../development/libraries/haskell/daemons { };
|
||||
|
||||
dataAccessor = callPackage ../development/libraries/haskell/data-accessor/data-accessor.nix {};
|
||||
|
||||
dataAccessorTemplate = callPackage ../development/libraries/haskell/data-accessor/data-accessor-template.nix {};
|
||||
|
|
Loading…
Reference in a new issue