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