mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
haskell-abstract-deque: update to version 0.3
This commit is contained in:
parent
9c3c0397a2
commit
e41a33b48f
|
@ -1,18 +1,13 @@
|
|||
{ cabal, HUnit, random, testFramework, testFrameworkHunit, time }:
|
||||
{ cabal, random, time }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "abstract-deque";
|
||||
version = "0.2.2.1";
|
||||
sha256 = "0saf7j8fdqqk9msxrfja22zx8v0ibzrqx3v9l07g5n84yh4ydbdx";
|
||||
buildDepends = [
|
||||
HUnit random testFramework testFrameworkHunit time
|
||||
];
|
||||
testDepends = [
|
||||
HUnit random testFramework testFrameworkHunit time
|
||||
];
|
||||
version = "0.3";
|
||||
sha256 = "18jwswjxwzc9bjiy4ds6hw2a74ki797jmfcifxd2ga4kh7ri1ah9";
|
||||
buildDepends = [ random time ];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://github.com/rrnewton/haskell-lockfree-queue/wiki";
|
||||
homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
|
||||
description = "Abstract, parameterized interface to mutable Deques";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
|
|
Loading…
Reference in a new issue