mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
96 lines
1.6 KiB
Nix
96 lines
1.6 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, substituteAll
|
|
, docbook_xml_dtd_42
|
|
, docbook_xsl
|
|
, fontconfig
|
|
, freetype
|
|
, gdk-pixbuf
|
|
, gettext
|
|
, glib
|
|
, gobject-introspection
|
|
, gperf
|
|
, gtk-doc
|
|
, gtk3
|
|
, json-glib
|
|
, libarchive
|
|
, curl
|
|
, libuuid
|
|
, libxslt
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, pngquant
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "appstream-glib";
|
|
version = "0.8.2";
|
|
|
|
outputs = [ "out" "dev" "man" "installedTests" ];
|
|
outputBin = "dev";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hughsie";
|
|
repo = "appstream-glib";
|
|
rev = "${lib.replaceStrings ["-"] ["_"] pname}_${lib.replaceStrings ["."] ["_"] version}";
|
|
sha256 = "sha256-3QFiOJ38talA0GGL++n+DaA/AN7l4LOZQ7BJV6o8ius=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
docbook_xml_dtd_42
|
|
docbook_xsl
|
|
gettext
|
|
gobject-introspection
|
|
gperf
|
|
gtk-doc
|
|
libxslt
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
fontconfig
|
|
freetype
|
|
gdk-pixbuf
|
|
glib
|
|
gtk3
|
|
json-glib
|
|
libarchive
|
|
curl
|
|
libuuid
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
glib
|
|
gdk-pixbuf
|
|
];
|
|
|
|
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 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.unix;
|
|
maintainers = with maintainers; [ matthewbauer ];
|
|
};
|
|
}
|