mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
boundingboxes: 0.1.1, 0.2
This commit is contained in:
parent
555d1fbfdf
commit
9e8f9b5528
24
pkgs/development/libraries/haskell/boundingboxes/0.1.1.nix
Normal file
24
pkgs/development/libraries/haskell/boundingboxes/0.1.1.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ cabal, lens, linear, QuickCheck, random, testFramework
|
||||
, testFrameworkQuickcheck2, testFrameworkTh
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "boundingboxes";
|
||||
version = "0.1.1";
|
||||
sha256 = "1nl0lqgfwd98jzhhw7i4vvd88lpnn8770x2pcbyfzqcyr27079f0";
|
||||
buildDepends = [ lens linear ];
|
||||
testDepends = [
|
||||
lens linear QuickCheck random testFramework
|
||||
testFrameworkQuickcheck2 testFrameworkTh
|
||||
];
|
||||
|
||||
# https://github.com/fumieval/boundingboxes/issues/1
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/fumieval/boundingboxes";
|
||||
description = "The type for 2D bounding box";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
24
pkgs/development/libraries/haskell/boundingboxes/0.2.nix
Normal file
24
pkgs/development/libraries/haskell/boundingboxes/0.2.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ cabal, lens, linear, QuickCheck, random, testFramework
|
||||
, testFrameworkQuickcheck2, testFrameworkTh
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "boundingboxes";
|
||||
version = "0.2";
|
||||
sha256 = "0xvh1h4papfrf6dg553rx6q8fqi06ff1ivgn4rdx3haqg1zf40hp";
|
||||
buildDepends = [ lens ];
|
||||
testDepends = [
|
||||
lens linear QuickCheck random testFramework
|
||||
testFrameworkQuickcheck2 testFrameworkTh
|
||||
];
|
||||
|
||||
# https://github.com/fumieval/boundingboxes/issues/1
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/fumieval/boundingboxes";
|
||||
description = "The type for 2D bounding box";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -275,6 +275,10 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
|
||||
Boolean = callPackage ../development/libraries/haskell/Boolean {};
|
||||
|
||||
boundingboxes_0_1_1 = callPackage ../development/libraries/haskell/boundingboxes/0.1.1.nix {};
|
||||
boundingboxes_0_2 = callPackage ../development/libraries/haskell/boundingboxes/0.2.nix {};
|
||||
boundingboxes = self.boundingboxes_0_2;
|
||||
|
||||
brainfuck = callPackage ../development/libraries/haskell/brainfuck {};
|
||||
|
||||
bson = callPackage ../development/libraries/haskell/bson {};
|
||||
|
Loading…
Reference in New Issue
Block a user