forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
80 lines
1.4 KiB
Nix
80 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, meson
|
|
, ninja
|
|
, pkgconfig
|
|
, gnome3
|
|
, desktop-file-utils
|
|
, gettext
|
|
, itstool
|
|
, python3
|
|
, wrapGAppsHook
|
|
, gtk3
|
|
, glib
|
|
, libsoup
|
|
, gnome-online-accounts
|
|
, librest
|
|
, 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
|
|
librest
|
|
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${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 lib; {
|
|
description = "Recipe management application for GNOME";
|
|
homepage = "https://wiki.gnome.org/Apps/Recipes";
|
|
maintainers = teams.gnome.members;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|