Added haskell packages: hdaemonize, ixset, shellmate, tables and webdriver.
This commit is contained in:
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;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user