mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 12:53:59 +03:00
Add vectorThUnbox
This commit is contained in:
parent
7346eb64bf
commit
fab2610bcf
@ -0,0 +1,13 @@
|
||||
{ cabal, vector }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "vector-th-unbox";
|
||||
version = "0.2.0.1";
|
||||
sha256 = "1q01yk6cyjxbdnmq31d5mfac09hbql43d7xiw1snc96nmkklfpjv";
|
||||
buildDepends = [ vector ];
|
||||
meta = {
|
||||
description = "Deriver for Data.Vector.Unboxed using Template Haskell";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -2012,6 +2012,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
vectorSpacePoints = callPackage ../development/libraries/haskell/vector-space-points {};
|
||||
|
||||
vectorThUnbox = callPackage ../development/libraries/haskell/vector-th-unbox {};
|
||||
|
||||
void = callPackage ../development/libraries/haskell/void {};
|
||||
|
||||
vty = callPackage ../development/libraries/haskell/vty {};
|
||||
|
Loading…
Reference in New Issue
Block a user