2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, filepath, HUnit }:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "file-embed";
|
2013-12-01 23:29:09 +01:00
|
|
|
version = "0.0.6";
|
|
|
|
sha256 = "0ag3g8mv8cw8km785kskz8kv38zs8gimrc3lr9dvkc1qnp2fdmgz";
|
2013-01-04 19:17:21 +01:00
|
|
|
buildDepends = [ filepath ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [ filepath HUnit ];
|
2011-08-08 00:51:22 +02:00
|
|
|
meta = {
|
2012-05-08 12:08:16 +02:00
|
|
|
homepage = "https://github.com/snoyberg/file-embed";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Use Template Haskell to embed file contents directly";
|
2011-08-08 00:51:22 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|