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

HsYAML: init at 0.2.1.1

parent cbcd5d05
Branches
Tags
No related merge requests found
...@@ -63,6 +63,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -63,6 +63,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "Diff" "0.4.1" , callHackage "Diff" "0.4.1"
, callHackage "Glob" "0.10.2" , callHackage "Glob" "0.10.2"
, callHackage "HTTP" "4000.4.1" , callHackage "HTTP" "4000.4.1"
, callHackage "HsYAML" "0.2.1.1"
, callHackage "HUnit" "1.6.2.0" , callHackage "HUnit" "1.6.2.0"
, callHackage "JuicyPixels" "3.3.8" , callHackage "JuicyPixels" "3.3.8"
, callHackage "MonadRandom" "0.5.3" , callHackage "MonadRandom" "0.5.3"
......
...@@ -21,6 +21,8 @@ self: with pkgs.haskell.lib; { ...@@ -21,6 +21,8 @@ self: with pkgs.haskell.lib; {
HUnit = self.callPackage (./pkgs/HUnit.nix) { }; HUnit = self.callPackage (./pkgs/HUnit.nix) { };
HsYAML = self.callPackage (./pkgs/HsYAML.nix) { };
JuicyPixels = self.callPackage (./pkgs/JuicyPixels.nix) { }; JuicyPixels = self.callPackage (./pkgs/JuicyPixels.nix) { };
MonadRandom = self.callPackage (./pkgs/MonadRandom.nix) { }; MonadRandom = self.callPackage (./pkgs/MonadRandom.nix) { };
......
{ mkDerivation
, base
, bytestring
, containers
, deepseq
, lib
, mtl
, parsec
, QuickCheck
, tasty
, tasty-quickcheck
, text
, transformers
}:
mkDerivation {
pname = "HsYAML";
version = "0.2.1.1";
sha256 = "465bb4fc90979c19bedf6db2053f9ac54537b4912d5827d7e2135d42ef5ef628";
revision = "1";
editedCabalFile = "0jmbgrjywcblrd8k6zzv2b5givdz83f479y15v5gs0r93z25xpmv";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
containers
deepseq
mtl
parsec
text
transformers
];
testHaskellDepends = [
base
bytestring
containers
mtl
QuickCheck
tasty
tasty-quickcheck
text
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell-hvr/HsYAML";
description = "Pure Haskell YAML 1.2 processor";
license = lib.licenses.gpl2Only;
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