mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
haskell-ieee754: added version 0.7.3
svn path=/nixpkgs/trunk/; revision=32004
This commit is contained in:
parent
4d25e699a1
commit
8cba75ac34
2 changed files with 15 additions and 0 deletions
13
pkgs/development/libraries/haskell/ieee754/default.nix
Normal file
13
pkgs/development/libraries/haskell/ieee754/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ cabal }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "ieee754";
|
||||
version = "0.7.3";
|
||||
sha256 = "0gq747h15inxbxbgmzmchb9a8p57rhv3bmj69idx5arh0d3whgv0";
|
||||
meta = {
|
||||
homepage = "http://github.com/patperry/hs-ieee754";
|
||||
description = "Utilities for dealing with IEEE floating point numbers";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -900,6 +900,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
hxtUnicode = callPackage ../development/libraries/haskell/hxt-unicode {};
|
||||
|
||||
ieee754 = callPackage ../development/libraries/haskell/ieee754 {};
|
||||
|
||||
instantGenerics = callPackage ../development/libraries/haskell/instant-generics {};
|
||||
|
||||
ioStorage = callPackage ../development/libraries/haskell/io-storage {};
|
||||
|
|
Loading…
Reference in a new issue