8a012a28bf
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/appstream-glib/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 0.7.9 with grep in /nix/store/c15qrflgi7dn8by6lndn4szzxqfv6fbh-appstream-glib-0.7.9 - directory tree listing: https://gist.github.com/8232c1c6ab5664cb630765eefbbf7f5f - du listing: https://gist.github.com/820804a1f32be45fb3ccdd98d6dd6a86
56 lines
1.5 KiB
Nix
56 lines
1.5 KiB
Nix
{ stdenv, fetchFromGitHub, substituteAll, pkgconfig, gettext, gtk3, glib
|
|
, gtk-doc, libarchive, gobjectIntrospection, libxslt, pngquant
|
|
, sqlite, libsoup, gcab, attr, acl, docbook_xsl, docbook_xml_dtd_42
|
|
, libuuid, json-glib, meson, gperf, ninja
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
name = "appstream-glib-0.7.9";
|
|
|
|
outputs = [ "out" "dev" "man" "installedTests" ];
|
|
outputBin = "dev";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hughsie";
|
|
repo = "appstream-glib";
|
|
rev = stdenv.lib.replaceStrings ["." "-"] ["_" "_"] name;
|
|
sha256 = "10b32qw7iy0v1jvmf18wqgs8d1cpy52zm5rzw0wv421n90qiyidk";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson pkgconfig ninja gtk-doc libxslt docbook_xsl docbook_xml_dtd_42
|
|
];
|
|
buildInputs = [
|
|
glib gettext sqlite libsoup
|
|
gcab attr acl libuuid json-glib
|
|
libarchive gobjectIntrospection 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 ];
|
|
};
|
|
}
|