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

numeric-extras: init at 0.1

parent 6d8198eb
Branches
No related merge requests found
......@@ -684,6 +684,7 @@ let packages =
, newtype = H.callHackage "newtype" "0.2.2.0"
, nonempty-vector = H.callHackage "nonempty-vector" "0.2.1.0"
, nothunks = H.callHackage "nothunks" "0.1.3"
, numeric-extras = H.callHackage "numeric-extras" "0.1"
, numtype-dk = H.callHackage "numtype-dk" "0.5.0.3"
, odd-jobs =
H.callGit
......
......@@ -1107,6 +1107,8 @@ self: with pkgs.haskell.lib; {
nothunks = self.callPackage (./pkgs/nothunks.nix) { };
numeric-extras = self.callPackage (./pkgs/numeric-extras.nix) { };
numtype-dk = self.callPackage (./pkgs/numtype-dk.nix) { };
odd-jobs = self.callPackage (./pkgs/odd-jobs.nix) { };
......
{ mkDerivation, base, lib }:
mkDerivation {
pname = "numeric-extras";
version = "0.1";
sha256 = "c700711021d96334be43a21fbd80a5f7146fdd6706ef8656f1d287ff000b61d6";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/ekmett/numeric-extras";
description = "Useful tools from the C standard library";
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