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

ini: init at 0.4.2

parent 99adc4cf
Branches
Tags
No related merge requests found
...@@ -364,6 +364,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -364,6 +364,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "indexed-traversable" "0.1.2" , callHackage "indexed-traversable" "0.1.2"
, callHackage "indexed-traversable-instances" "0.1.1.1" , callHackage "indexed-traversable-instances" "0.1.1.1"
, callHackage "infer-license" "0.2.0" , callHackage "infer-license" "0.2.0"
, callHackage "ini" "0.4.2"
, callHackage "insert-ordered-containers" "0.2.5.1" , callHackage "insert-ordered-containers" "0.2.5.1"
, callHackage "inspection-testing" "0.5" , callHackage "inspection-testing" "0.5"
, callHackage "integer-logarithms" "1.0.3.1" , callHackage "integer-logarithms" "1.0.3.1"
......
...@@ -505,6 +505,8 @@ self: with pkgs.haskell.lib; { ...@@ -505,6 +505,8 @@ self: with pkgs.haskell.lib; {
infer-license = self.callPackage (./pkgs/infer-license.nix) { }; infer-license = self.callPackage (./pkgs/infer-license.nix) { };
ini = self.callPackage (./pkgs/ini.nix) { };
insert-ordered-containers = self.callPackage (./pkgs/insert-ordered-containers.nix) { }; insert-ordered-containers = self.callPackage (./pkgs/insert-ordered-containers.nix) { };
inspection-testing = self.callPackage (./pkgs/inspection-testing.nix) { }; inspection-testing = self.callPackage (./pkgs/inspection-testing.nix) { };
......
{ mkDerivation
, attoparsec
, base
, hspec
, lib
, text
, unordered-containers
}:
mkDerivation {
pname = "ini";
version = "0.4.2";
sha256 = "f79d8ceca14a0d4039e3443d34e9e33a390fd3c3562a8f0a301f45ba1161e936";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
attoparsec
base
text
unordered-containers
];
testHaskellDepends = [ base hspec unordered-containers ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/andreasabel/ini";
description = "Configuration files in the INI format";
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