mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
17 lines
530 B
Nix
17 lines
530 B
Nix
{ cabal, filepath, HUnit }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "file-embed";
|
|
version = "0.0.6";
|
|
sha256 = "0ag3g8mv8cw8km785kskz8kv38zs8gimrc3lr9dvkc1qnp2fdmgz";
|
|
buildDepends = [ filepath ];
|
|
testDepends = [ filepath HUnit ];
|
|
meta = {
|
|
homepage = "https://github.com/snoyberg/file-embed";
|
|
description = "Use Template Haskell to embed file contents directly";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|