IMM RSS reader and dependencies

This commit is contained in:
Daniel Bergey
2014-05-22 14:07:25 +00:00
parent 4d634e2bae
commit f211c32e6d
5 changed files with 131 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{ cabal, xml }:
cabal.mkDerivation (self: {
pname = "opml";
version = "0.4";
sha256 = "1bnr6lkcf2qs7pvrmd8a5xmklcg67l64b776hzclfvxqy1qil29x";
buildDepends = [ xml ];
meta = {
description = "Representing and handling OPML subscription information";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})