2013-01-04 19:17:21 +01:00
|
|
|
{ cabal, filepath }:
|
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-01-04 19:17:21 +01:00
|
|
|
version = "0.0.4.7";
|
|
|
|
sha256 = "1hn08499kay0y6ik5z1s58s8r9h1nzf116avgi6ia4b565wpzkvi";
|
|
|
|
buildDepends = [ filepath ];
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|