mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
gnome-recipes: init at 2.0.2
This commit is contained in:
parent
f28ff4cf7f
commit
14a1a4be31
79
pkgs/applications/misc/gnome-recipes/default.nix
Normal file
79
pkgs/applications/misc/gnome-recipes/default.nix
Normal file
@ -0,0 +1,79 @@
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, meson
|
||||
, ninja
|
||||
, pkgconfig
|
||||
, gnome3
|
||||
, desktop-file-utils
|
||||
, gettext
|
||||
, itstool
|
||||
, python3
|
||||
, wrapGAppsHook
|
||||
, gtk3
|
||||
, glib
|
||||
, libsoup
|
||||
, gnome-online-accounts
|
||||
, rest
|
||||
, json-glib
|
||||
, gnome-autoar
|
||||
, gspell
|
||||
, libcanberra }:
|
||||
|
||||
let
|
||||
pname = "gnome-recipes";
|
||||
version = "2.0.2";
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
||||
sha256 = "1yymii3yf823d9x28fbhqdqm1wa30s40j94x0am9fjj0nzyd5s8v";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
pkgconfig
|
||||
desktop-file-utils
|
||||
gettext
|
||||
itstool
|
||||
python3
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gtk3
|
||||
glib
|
||||
libsoup
|
||||
gnome-online-accounts
|
||||
rest
|
||||
json-glib
|
||||
gnome-autoar
|
||||
gspell
|
||||
libcanberra
|
||||
];
|
||||
|
||||
# https://github.com/NixOS/nixpkgs/issues/36468
|
||||
# https://gitlab.gnome.org/GNOME/recipes/issues/76
|
||||
NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
|
||||
|
||||
postPatch = ''
|
||||
chmod +x src/list_to_c.py
|
||||
patchShebangs src/list_to_c.py
|
||||
patchShebangs meson_post_install.py
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript {
|
||||
packageName = pname;
|
||||
};
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Recipe management application for GNOME";
|
||||
homepage = https://wiki.gnome.org/Apps/Recipes;
|
||||
maintainers = gnome3.maintainers;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -17210,6 +17210,10 @@ with pkgs;
|
||||
|
||||
gnome-mpv = callPackage ../applications/video/gnome-mpv { };
|
||||
|
||||
gnome-recipes = callPackage ../applications/misc/gnome-recipes {
|
||||
inherit (gnome3) gnome-online-accounts rest gnome-autoar gspell;
|
||||
};
|
||||
|
||||
gollum = callPackage ../applications/misc/gollum { };
|
||||
|
||||
googleearth = callPackage ../applications/misc/googleearth { };
|
||||
|
Loading…
Reference in New Issue
Block a user