nixpkgs/pkgs/development/libraries/libmrss/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

23 lines
656 B
Nix

{stdenv, fetchurl, curl, libnxml, pkgconfig}:
stdenv.mkDerivation {
name = "libmrss-0.19.2";
src = fetchurl {
url = "https://www.autistici.org/bakunin/libmrss/libmrss-0.19.2.tar.gz";
sha256 = "02r1bgj8qlkn63xqfi5yq8y7wrilxcnkycaag8qskhg5ranic507";
};
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ curl libnxml ];
meta = {
homepage = http://www.autistici.org/bakunin/libmrss/doc;
description = "C library for parsing, writing and creating RSS/ATOM files or streams";
license = stdenv.lib.licenses.lgpl2;
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.viric ];
};
}