mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 00:54:46 +00:00
3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
438 B
Nix
15 lines
438 B
Nix
{ cabal, utf8String, xml }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "feed";
|
|
version = "0.3.8";
|
|
sha256 = "1yvigcvb8cvxfa8vb2i11xkrylqw57jwzkaji6m1wp03k80zf576";
|
|
buildDepends = [ utf8String xml ];
|
|
meta = {
|
|
description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds.";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|