mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
haskell-packages.nix: added gamma library, required by random-fu
svn path=/nixpkgs/trunk/; revision=28294
This commit is contained in:
parent
0b6775521c
commit
79e8468117
15
pkgs/development/libraries/haskell/gamma/default.nix
Executable file
15
pkgs/development/libraries/haskell/gamma/default.nix
Executable file
@ -0,0 +1,15 @@
|
||||
{cabal, continuedFractions, converge, vector} :
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "gamma";
|
||||
version = "0.7.0.1";
|
||||
sha256 = "0728b5mrzmj9hkaqvikl45jyi2p9hnkl2p6l9yv7wnw557yb0gb2";
|
||||
propagatedBuildInputs = [ continuedFractions converge vector ];
|
||||
meta = {
|
||||
homepage = "https://github.com/mokus0/gamma";
|
||||
description = "Gamma function and related functions.";
|
||||
license = self.stdenv.lib.licenses.publicDomain;
|
||||
platforms = self.stdenv.lib.platforms.haskellPlatforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
||||
};
|
||||
})
|
@ -531,6 +531,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
fingertree = callPackage ../development/libraries/haskell/fingertree {};
|
||||
|
||||
gamma = callPackage ../development/libraries/haskell/gamma {};
|
||||
|
||||
gdiff = callPackage ../development/libraries/haskell/gdiff {};
|
||||
|
||||
getOptions = callPackage ../development/libraries/haskell/get-options {};
|
||||
|
Loading…
Reference in New Issue
Block a user