mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
haskell-unix-memory: new expression
This commit is contained in:
parent
84031981a5
commit
2525aac134
19
pkgs/development/libraries/haskell/unix-memory/default.nix
Normal file
19
pkgs/development/libraries/haskell/unix-memory/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ cabal, HUnit, mtl, QuickCheck, testFramework, testFrameworkHunit
|
||||
, testFrameworkQuickcheck2
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "unix-memory";
|
||||
version = "0.1.1";
|
||||
sha256 = "02jmccs7mcg2lhpnb1ps7ycxzmn46b4drf994vv0pawwjrkrhnhk";
|
||||
testDepends = [
|
||||
HUnit mtl QuickCheck testFramework testFrameworkHunit
|
||||
testFrameworkQuickcheck2
|
||||
];
|
||||
meta = {
|
||||
homepage = "http://github.com/vincenthz/hs-unix-memory";
|
||||
description = "Unix memory syscalls";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -2681,6 +2681,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
unixCompat = callPackage ../development/libraries/haskell/unix-compat {};
|
||||
|
||||
unixMemory = callPackage ../development/libraries/haskell/unix-memory {};
|
||||
|
||||
unixProcessConduit = callPackage ../development/libraries/haskell/unix-process-conduit {};
|
||||
|
||||
unixTime = callPackage ../development/libraries/haskell/unix-time {};
|
||||
|
|
Loading…
Reference in a new issue