Skip to content
Snippets Groups Projects
Commit a558f86d authored by Max Tomago's avatar Max Tomago Committed by Daniel Firth
Browse files

indexed-list-literals: init at 0.2.1.3

parent 093489c4
No related merge requests found
...@@ -212,6 +212,7 @@ let otherLibraries = ...@@ -212,6 +212,7 @@ let otherLibraries =
, callIoSim "io-sim" "io-sim" , callIoSim "io-sim" "io-sim"
, H.callHackage "io-streams" "1.5.2.2" , H.callHackage "io-streams" "1.5.2.2"
, H.callHackage "io-streams-haproxy" "1.0.1.0" , H.callHackage "io-streams-haproxy" "1.0.1.0"
, H.callHackage "indexed-list-literals" "0.2.1.3"
, H.callHackage "inline-c" "0.9.1.6" , H.callHackage "inline-c" "0.9.1.6"
, H.callGit , H.callGit
"inline-r" "inline-r"
......
...@@ -161,6 +161,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -161,6 +161,8 @@ final: prev: with pkgs.haskell.lib; {
hxt-unicode = final.callPackage (./pkgs/hxt-unicode.nix) { }; hxt-unicode = final.callPackage (./pkgs/hxt-unicode.nix) { };
indexed-list-literals = final.callPackage (./pkgs/indexed-list-literals.nix) { };
inline-c = final.callPackage (./pkgs/inline-c.nix) { }; inline-c = final.callPackage (./pkgs/inline-c.nix) { };
inline-r = final.callPackage (./pkgs/inline-r.nix) { }; inline-r = final.callPackage (./pkgs/inline-r.nix) { };
......
{ mkDerivation, Only, base, hspec, lib }:
mkDerivation {
pname = "indexed-list-literals";
version = "0.2.1.3";
sha256 = "26e399e285ddf44822781559f7202ed821382457ed6c1c32bdaac7945c033f9d";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base Only ];
testHaskellDepends = [ base hspec ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/davidm-d/indexed-list-literals";
description = "Type safe indexed list literals";
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