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

libyaml: init at 0.1.2

parent 3caa5fd4
No related merge requests found
......@@ -325,6 +325,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "lens" "5.2"
, callHackage "lens-aeson" "1.2.1"
, callHackage "lens-family-th" "0.5.2.1"
, callHackage "libyaml" "0.1.2"
, callHackage "lifted-async" "0.10.2.1"
, callHackage "linear" "1.21.10"
, callCabal2nix
......
......@@ -389,6 +389,8 @@ final: prev: with pkgs.haskell.lib; {
lens-family-th = prev.callPackage (./pkgs/lens-family-th.nix) { };
libyaml = prev.callPackage (./pkgs/libyaml.nix) { };
lifted-async = prev.callPackage (./pkgs/lifted-async.nix) { };
linear = prev.callPackage (./pkgs/linear.nix) { };
......
{ mkDerivation, base, bytestring, conduit, lib, resourcet }:
mkDerivation {
pname = "libyaml";
version = "0.1.2";
sha256 = "8f42d66f199fcaee255326f8f770d88b0670df56b5eb78002d6058f3a45e97b5";
revision = "1";
editedCabalFile = "00f1rag6sd7c8kza2agw9089p9vf21iiga2aq41nbf6d3yqn7dkz";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring conduit resourcet ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/snoyberg/yaml#readme";
description = "Low-level, streaming YAML interface";
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