Skip to content
Snippets Groups Projects
Commit f5910203 authored by Max Tomago's avatar Max Tomago
Browse files

nonempty-vector: init at 0.2.1.0

parent 67ec8837
No related merge requests found
......@@ -196,6 +196,7 @@ in [ callHackage "HTF" "0.15.0.0"
, callHackage "lazysmallcheck" "0.6"
, callHackage "list-t" "1.0.5.3"
, callHackage "newtype" "0.2.2.0"
, callHackage "nonempty-vector" "0.2.1.0"
, callCardanoLedger "non-integral" "libs/non-integral"
, callCabal2nix
"nothunks"
......
......@@ -143,6 +143,8 @@ final: prev: with pkgs.haskell.lib; {
non-integral = prev.callPackage (./pkgs/non-integral.nix) { };
nonempty-vector = prev.callPackage (./pkgs/nonempty-vector.nix) { };
nothunks = prev.callPackage (./pkgs/nothunks.nix) { };
partial-order = prev.callPackage (./pkgs/partial-order.nix) { };
......
{ mkDerivation
, base
, Cabal
, cabal-doctest
, deepseq
, doctest
, lib
, primitive
, vector
}:
mkDerivation {
pname = "nonempty-vector";
version = "0.2.1.0";
sha256 = "3e88159a1ad63039aba427597ea9d7eaf6e86789279d92e16214391b1bb2ce70";
revision = "1";
editedCabalFile = "18w57f8sdix71a27gwbifw7hmg34lms22c99gp7i7j7g154f3cn3";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [ base deepseq primitive vector ];
testHaskellDepends = [ base doctest ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/emilypi/nonempty-vector";
description = "Non-empty vectors";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment