mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
57 lines
1020 B
Nix
57 lines
1020 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, help2man
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, libxml2
|
|
, gnome
|
|
, gtk4
|
|
, gettext
|
|
, libadwaita
|
|
, itstool
|
|
, wrapGAppsHook4
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "zenity";
|
|
version = "4.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/zenity/${lib.versions.majorMinor finalAttrs.version}/zenity-${finalAttrs.version}.tar.xz";
|
|
hash = "sha256-wW3K5G4p4iwvoLlegOBslrKuyThAFhNpyVyF7Z8JMVM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
help2man
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
gettext
|
|
itstool
|
|
libxml2
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk4
|
|
libadwaita
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = "zenity";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
mainProgram = "zenity";
|
|
description = "Tool to display dialogs from the commandline and shell scripts";
|
|
homepage = "https://gitlab.gnome.org/GNOME/zenity";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = teams.gnome.members;
|
|
};
|
|
})
|