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

string-conv: init at 0.2.0

parent 330401fe
No related merge requests found
......@@ -674,6 +674,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "stm-chans" "3.0.0.6"
, callHackage "streaming-commons" "0.2.2.4"
, callHackage "strict" "0.4.0.1"
, callHackage "string-conv" "0.2.0"
, callHackage "string-interpolate" "0.3.1.2"
, callHackage "string-qq" "0.0.4"
, callHackage "stringbuilder" "0.5.1"
......
......@@ -1023,6 +1023,8 @@ self: with pkgs.haskell.lib; {
strict = self.callPackage (./pkgs/strict.nix) { };
string-conv = self.callPackage (./pkgs/string-conv.nix) { };
string-interpolate = self.callPackage (./pkgs/string-interpolate.nix) { };
string-qq = self.callPackage (./pkgs/string-qq.nix) { };
......
{ mkDerivation
, base
, bytestring
, lib
, quickcheck-instances
, tasty
, tasty-quickcheck
, text
}:
mkDerivation {
pname = "string-conv";
version = "0.2.0";
sha256 = "39cea3010eb1c52b6dd21c4108e23b89926f0f21b872ad1f5f644328c73a9096";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring text ];
testHaskellDepends = [
base
bytestring
quickcheck-instances
tasty
tasty-quickcheck
text
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/Soostone/string-conv";
description = "Standardized conversion between string types";
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