libgrss: init at 0.7.0
This commit is contained in:
parent
ede0b56cae
commit
ae756f9d02
39
pkgs/development/libraries/libgrss/default.nix
Normal file
39
pkgs/development/libraries/libgrss/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv, fetchurl, pkgconfig, vala, gobjectIntrospection, gtk-doc, docbook_xsl, docbook_xml_dtd_412, glib, libxml2, libsoup, gnome3 }:
|
||||
|
||||
let
|
||||
version = "0.7.0";
|
||||
pname = "libgrss";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "${pname}-${version}";
|
||||
|
||||
outputs = [ "out" "dev" "devdoc" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "1nalslgyglvhpva3px06fj6lv5zgfg0qmj0sbxyyl5d963vc02b7";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig vala gobjectIntrospection gtk-doc docbook_xsl docbook_xml_dtd_412 ];
|
||||
buildInputs = [ glib libxml2 libsoup ];
|
||||
|
||||
configureFlags = [
|
||||
"--enable-gtk-doc"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript {
|
||||
packageName = pname;
|
||||
};
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Glib abstaction to handle feeds in RSS, Atom and other formats";
|
||||
homepage = https://wiki.gnome.org/Projects/Libgrss;
|
||||
license = licenses.lgpl3Plus;
|
||||
maintainers = gnome3.maintainers;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -10321,6 +10321,8 @@ with pkgs;
|
||||
|
||||
libgroove = callPackage ../development/libraries/libgroove { };
|
||||
|
||||
libgrss = callPackage ../development/libraries/libgrss { };
|
||||
|
||||
libseccomp = callPackage ../development/libraries/libseccomp { };
|
||||
|
||||
libsecret = callPackage ../development/libraries/libsecret { };
|
||||
|
Loading…
Reference in New Issue
Block a user