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

file-embed: init at 0.0.15.0

parent 5fb342c0
No related merge requests found
......@@ -243,6 +243,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "extra" "1.7.12"
, callHackage "expiring-cache-map" "0.0.6.1"
, callHackage "fcf-containers" "0.7.1"
, callHackage "file-embed" "0.0.15.0"
, callHackage "filepattern" "0.1.3"
, callHackage "finite-field" "0.10.0"
, callHackage "first-class-families" "0.8.0.1"
......
......@@ -289,6 +289,8 @@ self: with pkgs.haskell.lib; {
fcf-containers = self.callPackage (./pkgs/fcf-containers.nix) { };
file-embed = self.callPackage (./pkgs/file-embed.nix) { };
filepattern = self.callPackage (./pkgs/filepattern.nix) { };
fin = self.callPackage (./pkgs/fin.nix) { };
......
{ mkDerivation
, base
, bytestring
, directory
, filepath
, lib
, template-haskell
}:
mkDerivation {
pname = "file-embed";
version = "0.0.15.0";
sha256 = "f066b85d537a20252faa59489f6a854e4e8f39080f08730c9e195e418cec5bdd";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
directory
filepath
template-haskell
];
testHaskellDepends = [ base bytestring filepath ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/snoyberg/file-embed";
description = "Use Template Haskell to embed file contents directly";
license = lib.licenses.bsd2;
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