mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
a51a99c690
camelCase package name was a huge inconsistency in GNOME package set.
56 lines
1.5 KiB
Nix
56 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, substituteAll, pkgconfig, gettext, gtk3, glib
|
|
, gtk-doc, libarchive, gobject-introspection, libxslt, pngquant
|
|
, sqlite, libsoup, attr, acl, docbook_xsl, docbook_xml_dtd_42
|
|
, libuuid, json-glib, meson, gperf, ninja
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
name = "appstream-glib-0.7.14";
|
|
|
|
outputs = [ "out" "dev" "man" "installedTests" ];
|
|
outputBin = "dev";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hughsie";
|
|
repo = "appstream-glib";
|
|
rev = stdenv.lib.replaceStrings ["." "-"] ["_" "_"] name;
|
|
sha256 = "1908ilra1l0m2a224azmj6p4yglzdwwk41rr6rhby959sgw3iaky";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson pkgconfig ninja gtk-doc libxslt docbook_xsl docbook_xml_dtd_42
|
|
];
|
|
buildInputs = [
|
|
glib gettext sqlite libsoup
|
|
attr acl libuuid json-glib
|
|
libarchive gobject-introspection gperf
|
|
];
|
|
propagatedBuildInputs = [ gtk3 ];
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./paths.patch;
|
|
pngquant= "${pngquant}/bin/pngquant";
|
|
})
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Drpm=false"
|
|
"-Dstemmer=false"
|
|
"-Ddep11=false"
|
|
];
|
|
|
|
doCheck = false; # fails at least 1 test
|
|
|
|
postInstall = ''
|
|
moveToOutput "share/installed-tests" "$installedTests"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Objects and helper methods to read and write AppStream metadata";
|
|
homepage = https://people.freedesktop.org/~hughsient/appstream-glib/;
|
|
license = licenses.lgpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ lethalman matthewbauer ];
|
|
};
|
|
}
|