mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
haskell-numeric-extras: add version 0.0.3
This commit is contained in:
parent
db322400df
commit
39f336b92f
2 changed files with 15 additions and 0 deletions
|
@ -0,0 +1,13 @@
|
|||
{ cabal }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "numeric-extras";
|
||||
version = "0.0.3";
|
||||
sha256 = "18jyjrk6iizz3sgkwgbh1rxf6zdf166bkgs7wia8b4z7f6261nzg";
|
||||
meta = {
|
||||
homepage = "http://github.com/ekmett/numeric-extras";
|
||||
description = "Useful tools from the C standard library";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -1509,6 +1509,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
nonNegative = callPackage ../development/libraries/haskell/non-negative {};
|
||||
|
||||
numericExtras = callPackage ../development/libraries/haskell/numeric-extras {};
|
||||
|
||||
numericPrelude = callPackage ../development/libraries/haskell/numeric-prelude {};
|
||||
|
||||
NumInstances = callPackage ../development/libraries/haskell/NumInstances {};
|
||||
|
|
Loading…
Reference in a new issue