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