-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathscientific.nix
More file actions
23 lines (22 loc) · 776 Bytes
/
Copy pathscientific.nix
File metadata and controls
23 lines (22 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ mkDerivation, base, binary, bytestring, containers, deepseq
, hashable, integer-gmp, integer-logarithms, QuickCheck, smallcheck, stdenv, tasty
, tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck
, text, primitive, criterion
}:
mkDerivation {
pname = "scientific";
version = "HEAD";
src = ./.;
libraryHaskellDepends = [
base binary bytestring containers deepseq hashable integer-gmp
integer-logarithms text primitive
];
testHaskellDepends = [
base bytestring QuickCheck smallcheck tasty tasty-ant-xml
tasty-hunit tasty-quickcheck tasty-smallcheck text
criterion
];
homepage = "https://github.com/basvandijk/scientific";
description = "Numbers represented using scientific notation";
license = stdenv.lib.licenses.bsd3;
}