mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
57bccb3cb8
* 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
23 lines
656 B
Nix
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 ];
|
|
};
|
|
}
|