Skip to content
Snippets Groups Projects
Commit f2c1b487 authored by Daniel Firth's avatar Daniel Firth
Browse files

fmt: init at 0.6.3.0

parent 4bff5587
No related merge requests found
......@@ -192,6 +192,7 @@ let otherLibraries =
"https://github.com/Quid2/flat"
"2121ee96201e39764e3a6fcbc53241afb0050647"
(None H.Subdir)
, H.callHackage "fmt" "0.6.3.0"
, H.callHackage "generic-arbitrary" "1.0.1"
, H.callHackage "generic-data" "1.0.0.0"
, H.callHackage "generic-lens" "2.2.1.0"
......
......@@ -145,6 +145,8 @@ final: prev: with pkgs.haskell.lib; {
flat = final.callPackage (./pkgs/flat.nix) { };
fmt = final.callPackage (./pkgs/fmt.nix) { };
generic-arbitrary = final.callPackage (./pkgs/generic-arbitrary.nix) { };
generic-data = final.callPackage (./pkgs/generic-data.nix) { };
......
{ mkDerivation
, QuickCheck
, base
, base64-bytestring
, bytestring
, call-stack
, containers
, criterion
, deepseq
, doctest
, doctest-discover
, formatting
, hspec
, interpolate
, lib
, microlens
, neat-interpolation
, text
, time
, time-locale-compat
, vector
}:
mkDerivation {
pname = "fmt";
version = "0.6.3.0";
sha256 = "b4ee7f3da97223bfef589264e7945160521f6e3323f64a2118bdec96cc04b006";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
base64-bytestring
bytestring
call-stack
containers
formatting
microlens
text
time
time-locale-compat
];
testHaskellDepends = [
base
bytestring
call-stack
containers
doctest
hspec
neat-interpolation
QuickCheck
text
vector
];
testToolDepends = [ doctest-discover ];
benchmarkHaskellDepends = [
base
bytestring
containers
criterion
deepseq
formatting
interpolate
text
vector
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/cdornan/fmt";
description = "A new formatting 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