python312Packages.llama-index: 0.12.9 -> 0.12.9.post1 (#371957)
[NixPkgs.git] / pkgs / by-name / li / libmrss / package.nix
blob49daaef8d790df9c74ea2bab7991c75c48e56936
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   curl,
6   libnxml,
7   autoreconfHook,
8   pkg-config,
9 }:
11 stdenv.mkDerivation (finalAttrs: {
12   pname = "libmrss";
13   version = "0.19.4";
15   src = fetchFromGitHub {
16     owner = "bakulf";
17     repo = "libmrss";
18     tag = finalAttrs.version;
19     hash = "sha256-sllY0Q8Ct7XJn4A3N8xQCUqaHXubPoB49gBZS1vURBs=";
20   };
22   postPatch = ''
23     touch NEWS # https://github.com/bakulf/libmrss/issues/3
24   '';
26   nativeBuildInputs = [
27     autoreconfHook
28     pkg-config
29   ];
31   propagatedBuildInputs = [
32     curl
33     libnxml
34   ];
36   meta = {
37     homepage = "https://github.com/bakulf/libmrss";
38     description = "C library for parsing, writing and creating RSS/ATOM files or streams";
39     license = lib.licenses.lgpl2;
40     platforms = lib.platforms.all;
41     maintainers = with lib.maintainers; [ sigmanificient ];
42   };