Added haskell packages: hdaemonize, ixset, shellmate, tables and webdriver.
This commit is contained in:
parent
cc0c939773
commit
8e4e15804c
14
pkgs/development/libraries/haskell/hdaemonize/default.nix
Normal file
14
pkgs/development/libraries/haskell/hdaemonize/default.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ cabal, extensibleExceptions, filepath, hsyslog, mtl }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hdaemonize";
|
||||
version = "0.4.5.0";
|
||||
sha256 = "1b9aic08pgmp95qy74qcrmq9dn33k6knycy7mn1dg8c5svmchb2w";
|
||||
buildDepends = [ extensibleExceptions filepath hsyslog mtl ];
|
||||
meta = {
|
||||
homepage = "http://github.com/madhadron/hdaemonize";
|
||||
description = "Library to handle the details of writing daemons for UNIX";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
14
pkgs/development/libraries/haskell/ixset/default.nix
Normal file
14
pkgs/development/libraries/haskell/ixset/default.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ cabal, safecopy, syb, sybWithClass }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "ixset";
|
||||
version = "1.0.5";
|
||||
sha256 = "1hznn7f8f13x5125n76dchayi16z72050qbwifnkrca54nf9q2ns";
|
||||
buildDepends = [ safecopy syb sybWithClass ];
|
||||
meta = {
|
||||
homepage = "http://happstack.com";
|
||||
description = "Efficient relational queries on Haskell sets";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
14
pkgs/development/libraries/haskell/shellmate/default.nix
Normal file
14
pkgs/development/libraries/haskell/shellmate/default.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ cabal, filepath, temporary, time, transformers }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "shellmate";
|
||||
version = "0.1.6";
|
||||
sha256 = "17fpl0h58cw5hp6jzrajkl629mw2c6x15cmlcbdxqk9xlxqrg4hr";
|
||||
buildDepends = [ filepath temporary time transformers ];
|
||||
meta = {
|
||||
homepage = "http://github.com/valderman/shellmate";
|
||||
description = "Simple interface for shell scripting in Haskell";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
23
pkgs/development/libraries/haskell/tables/default.nix
Normal file
23
pkgs/development/libraries/haskell/tables/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ cabal, binary, cereal, comonad, deepseq, doctest, filepath
|
||||
, hashable, lens, profunctors, safecopy, transformers
|
||||
, transformersCompat, unorderedContainers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "tables";
|
||||
version = "0.4.1";
|
||||
sha256 = "131c97lgni0b9pmkdfd5y0lwrb9yh9qyahknhrim8dzpkkfynk49";
|
||||
buildDepends = [
|
||||
binary cereal comonad deepseq hashable lens profunctors safecopy
|
||||
transformers transformersCompat unorderedContainers
|
||||
];
|
||||
testDepends = [
|
||||
doctest filepath lens transformers unorderedContainers
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://github.com/ekmett/tables/";
|
||||
description = "In-memory storage with multiple keys using lenses and traversals";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
27
pkgs/development/libraries/haskell/webdriver/default.nix
Normal file
27
pkgs/development/libraries/haskell/webdriver/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ cabal, aeson, attoparsec, base64Bytestring, cond, dataDefault
|
||||
, directoryTree, exceptions, filepath, HTTP, liftedBase
|
||||
, monadControl, mtl, network, parallel, scientific, temporary, text
|
||||
, time, transformers, transformersBase, unorderedContainers, vector
|
||||
, zipArchive
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "webdriver";
|
||||
version = "0.5.4";
|
||||
sha256 = "0839vw7drjn5iray4ma17f0pfgwx44q10ad8m564jvjgcml4yhvq";
|
||||
buildDepends = [
|
||||
aeson attoparsec base64Bytestring cond dataDefault directoryTree
|
||||
exceptions filepath HTTP liftedBase monadControl mtl network
|
||||
scientific temporary text time transformers transformersBase
|
||||
unorderedContainers vector zipArchive
|
||||
];
|
||||
testDepends = [ parallel text ];
|
||||
jailbreak = true;
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://github.com/kallisti-dev/hs-webdriver";
|
||||
description = "a Haskell client for the Selenium WebDriver protocol";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -1066,6 +1066,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
|
||||
HaXml = callPackage ../development/libraries/haskell/HaXml {};
|
||||
|
||||
hdaemonize = callPackage ../development/libraries/haskell/hdaemonize {};
|
||||
|
||||
HDBC = callPackage ../development/libraries/haskell/HDBC/HDBC.nix {};
|
||||
|
||||
HDBCOdbc = callPackage ../development/libraries/haskell/HDBC/HDBC-odbc.nix {
|
||||
@ -1280,6 +1282,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
preprocessorTools = self.preprocessorTools_0_1_3;
|
||||
};
|
||||
|
||||
ixset = callPackage ../development/libraries/haskell/ixset {};
|
||||
|
||||
ixShapable = callPackage ../development/libraries/haskell/ix-shapable {};
|
||||
|
||||
jack = callPackage ../development/libraries/haskell/jack {};
|
||||
@ -1960,6 +1964,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
|
||||
setlocale = callPackage ../development/libraries/haskell/setlocale {};
|
||||
|
||||
shellmate = callPackage ../development/libraries/haskell/shellmate {};
|
||||
|
||||
shelly_0_15_4_1 = callPackage ../development/libraries/haskell/shelly/0.15.4.1.nix {};
|
||||
shelly_1_5_3_1 = callPackage ../development/libraries/haskell/shelly {};
|
||||
shelly = self.shelly_1_5_3_1;
|
||||
@ -2160,6 +2166,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
|
||||
TableAlgebra = callPackage ../development/libraries/haskell/TableAlgebra {};
|
||||
|
||||
tables = callPackage ../development/libraries/haskell/tables {};
|
||||
|
||||
tabular = callPackage ../development/libraries/haskell/tabular {};
|
||||
|
||||
tagged = callPackage ../development/libraries/haskell/tagged {};
|
||||
@ -2462,6 +2470,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
|
||||
wcwidth = callPackage ../development/libraries/haskell/wcwidth {};
|
||||
|
||||
webdriver = callPackage ../development/libraries/haskell/webdriver {};
|
||||
|
||||
webRoutes = callPackage ../development/libraries/haskell/web-routes {};
|
||||
|
||||
webRoutesBoomerang = callPackage ../development/libraries/haskell/web-routes-boomerang {};
|
||||
|
Loading…
Reference in New Issue
Block a user