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

interpolate: init at 0.2.1

parent 389e901c
Branches
No related merge requests found
......@@ -387,6 +387,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "insert-ordered-containers" "0.2.5.1"
, callHackage "inspection-testing" "0.5"
, callHackage "integer-logarithms" "1.0.3.1"
, callHackage "interpolate" "0.2.1"
, callHackage "invariant" "0.6"
, callHackage "ipynb" "0.2"
, callHackage "iproute" "1.7.12"
......
......@@ -563,6 +563,8 @@ self: with pkgs.haskell.lib; {
integer-logarithms = self.callPackage (./pkgs/integer-logarithms.nix) { };
interpolate = self.callPackage (./pkgs/interpolate.nix) { };
invariant = self.callPackage (./pkgs/invariant.nix) { };
iproute = self.callPackage (./pkgs/iproute.nix) { };
......
{ mkDerivation
, base
, base-compat
, bytestring
, haskell-src-meta
, hspec
, lib
, QuickCheck
, quickcheck-instances
, template-haskell
, text
}:
mkDerivation {
pname = "interpolate";
version = "0.2.1";
sha256 = "2776dd5083aead756a761c3350a87312b4fbf4851555cf9560800bc3929c590e";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base haskell-src-meta template-haskell ];
testHaskellDepends = [
base
base-compat
bytestring
haskell-src-meta
hspec
QuickCheck
quickcheck-instances
template-haskell
text
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/sol/interpolate#readme";
description = "String interpolation done right";
license = lib.licenses.mit;
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