Skip to content
Snippets Groups Projects
Commit 6d8198eb authored by Daniel Firth's avatar Daniel Firth Committed by Raoul Hidalgo Charman
Browse files

intervals: init at 0.9.2

parent 19042d78
No related merge requests found
......@@ -554,6 +554,7 @@ let packages =
, int-cast = H.callHackage "int-cast" "0.2.0.0"
, integer-logarithms = H.callHackage "integer-logarithms" "1.0.3.1"
, interpolate = H.callHackage "interpolate" "0.2.1"
, intervals = H.callHackage "intervals" "0.9.2"
, invariant = H.callHackage "invariant" "0.6"
, io-streams-haproxy = H.callHackage "io-streams-haproxy" "1.0.1.0"
, io-streams = H.callHackage "io-streams" "1.5.2.2"
......
......@@ -873,6 +873,8 @@ self: with pkgs.haskell.lib; {
interpolate = self.callPackage (./pkgs/interpolate.nix) { };
intervals = self.callPackage (./pkgs/intervals.nix) { };
invariant = self.callPackage (./pkgs/invariant.nix) { };
io-streams = self.callPackage (./pkgs/io-streams.nix) { };
......
{ mkDerivation
, QuickCheck
, array
, base
, distributive
, ghc-prim
, lib
}:
mkDerivation {
pname = "intervals";
version = "0.9.2";
sha256 = "9b421de662873e65e90380b9c5a0c7497afa581b3e0e65530f8653a4fddb2be2";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ array base distributive ghc-prim ];
testHaskellDepends = [ base QuickCheck ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/ekmett/intervals";
description = "Interval Arithmetic";
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