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

libxml: init at 0.1.1

parent 59b74666
No related merge requests found
......@@ -471,6 +471,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "lens-family-th" "0.5.2.1"
, callHackage "lens" "5.2"
, callHackage "libsodium" "1.0.18.2"
, callHackage "libxml" "0.1.1"
, callHackage "libyaml" "0.1.2"
, callHackage "lift-type" "0.1.0.1"
, callHackage "lifted-async" "0.10.2.1"
......
......@@ -699,6 +699,8 @@ self: with pkgs.haskell.lib; {
libsodium = self.callPackage (./pkgs/libsodium.nix) { };
libxml = self.callPackage (./pkgs/libxml.nix) { };
libyaml = self.callPackage (./pkgs/libyaml.nix) { };
lift-type = self.callPackage (./pkgs/lift-type.nix) { };
......
{ mkDerivation, base, bytestring, lib, libxml2, mtl }:
mkDerivation {
pname = "libxml";
version = "0.1.1";
sha256 = "d1e92affb41e7abe1c7b692aa24ae47dbcf3636f2753bb85a3469c370d9afb07";
configureFlags = [
"--extra-include-dir=${libxml2.dev}/include/libxml2"
];
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring mtl ];
librarySystemDepends = [ libxml2 ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Binding to libxml2";
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