mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Added Vec and Ranged-sets libraries for Haskell.
svn path=/nixpkgs/trunk/; revision=21767
This commit is contained in:
parent
5bf578f7f9
commit
a7e554d43c
3 changed files with 36 additions and 0 deletions
14
pkgs/development/libraries/haskell/Ranged-sets/default.nix
Normal file
14
pkgs/development/libraries/haskell/Ranged-sets/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{cabal, HUnit, QuickCheck}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "Ranged-sets";
|
||||
version = "0.2.1";
|
||||
sha256 = "dee83d2ea0ae56ff31eb7c74a0785328ca8621792c0859e223b12c17bb775f12";
|
||||
propagatedBuildInputs = [HUnit QuickCheck];
|
||||
meta = {
|
||||
description = "Ranged sets for Haskell";
|
||||
license = "BSD";
|
||||
maintainers = [self.stdenv.lib.maintainers.andres];
|
||||
};
|
||||
})
|
||||
|
14
pkgs/development/libraries/haskell/Vec/default.nix
Normal file
14
pkgs/development/libraries/haskell/Vec/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{cabal, QuickCheck}:
|
||||
|
||||
cabal.mkDerivation (self : {
|
||||
pname = "Vec";
|
||||
version = "0.9.7";
|
||||
sha256 = "a67197f4dc022d6119a790e029a9475a17bb04ad812006bb154e5da9cd8f7ac7";
|
||||
propagatedBuildInputs = [QuickCheck];
|
||||
meta = {
|
||||
description = "Fixed-length lists and low-dimensional linear algebra";
|
||||
license = "BSD";
|
||||
maintainers = [self.stdenv.lib.maintainers.andres];
|
||||
};
|
||||
})
|
||||
|
|
@ -576,6 +576,10 @@ rec {
|
|||
inherit cabal mtl;
|
||||
};
|
||||
|
||||
RangedSets = import ../development/libraries/haskell/Ranged-sets {
|
||||
inherit cabal HUnit QuickCheck;
|
||||
};
|
||||
|
||||
readline = import ../development/libraries/haskell/readline {
|
||||
inherit cabal;
|
||||
inherit (pkgs) readline ncurses;
|
||||
|
@ -786,6 +790,10 @@ rec {
|
|||
inherit cabal vacuum gtk2hs parallel strictConcurrency;
|
||||
};
|
||||
|
||||
Vec = import ../development/libraries/haskell/Vec {
|
||||
inherit cabal QuickCheck;
|
||||
};
|
||||
|
||||
vector = import ../development/libraries/haskell/vector {
|
||||
inherit cabal primitive;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue