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

cassava: init at 0.5.3.0

parent fec4ad03
Branches
No related merge requests found
......@@ -99,6 +99,7 @@ in [ callHackage "Cabal" "3.8.1.0"
"https://github.com/NixOS/cabal2nix"
(None Text)
(Some "cabal2nix")
, callHackage "cassava" "0.5.3.0"
, callHackage "cereal" "0.5.8.3"
, callHackage "cborg" "0.2.8.0"
, callHackage "cborg-json" "0.2.5.0"
......
......@@ -73,6 +73,8 @@ final: prev: with pkgs.haskell.lib; {
cabal2nix = prev.callPackage (./pkgs/cabal2nix.nix) { };
cassava = prev.callPackage (./pkgs/cassava.nix) { };
cborg = prev.callPackage (./pkgs/cborg.nix) { };
cborg-json = prev.callPackage (./pkgs/cborg-json.nix) { };
......
{ mkDerivation, array, attoparsec, base, bytestring, containers
, deepseq, hashable, HUnit, lib, Only, QuickCheck
, quickcheck-instances, scientific, test-framework
, test-framework-hunit, test-framework-quickcheck2, text
, text-short, transformers, unordered-containers, vector
}:
mkDerivation {
pname = "cassava";
version = "0.5.3.0";
sha256 = "b4c8451f433ad7725cb8b9f7a7efe598ba103b16584713c91f48ae023829e9be";
configureFlags = [ "-f-bytestring--lt-0_10_4" ];
libraryHaskellDepends = [
array attoparsec base bytestring containers deepseq hashable Only
scientific text text-short transformers unordered-containers vector
];
testHaskellDepends = [
attoparsec base bytestring hashable HUnit QuickCheck
quickcheck-instances scientific test-framework test-framework-hunit
test-framework-quickcheck2 text unordered-containers vector
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell-hvr/cassava";
description = "A CSV parsing and encoding library";
license = lib.licenses.bsd3;
}
\ No newline at end of file
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