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.
78 lines
1.5 KiB
Nix
78 lines
1.5 KiB
Nix
{ lib
|
|
, fetchFromGitLab
|
|
, meson
|
|
, gobject-introspection
|
|
, pkg-config
|
|
, ninja
|
|
, python3
|
|
, wrapGAppsHook4
|
|
, gtk4
|
|
, gdk-pixbuf
|
|
, webkitgtk_4_0
|
|
, gtksourceview5
|
|
, glib-networking
|
|
, libadwaita
|
|
, appstream
|
|
, blueprint-compiler
|
|
}:
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "giara";
|
|
version = "1.1.0";
|
|
|
|
format = "other";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "World";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-FTy0ElcoTGXG9eV85pUrF35qKDKOfYIovPtjLfTJVOg=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
appstream
|
|
meson
|
|
gobject-introspection
|
|
pkg-config
|
|
ninja
|
|
wrapGAppsHook4
|
|
blueprint-compiler
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk4
|
|
gdk-pixbuf
|
|
webkitgtk_4_0
|
|
gtksourceview5
|
|
glib-networking
|
|
libadwaita
|
|
];
|
|
|
|
pythonPath = with python3.pkgs; [
|
|
pygobject3
|
|
pycairo
|
|
python-dateutil
|
|
praw
|
|
pillow
|
|
mistune
|
|
beautifulsoup4
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace meson_post_install.py \
|
|
--replace "gtk-update-icon-cache" "gtk4-update-icon-cache"
|
|
# blueprint-compiler expects "profile" to be a string.
|
|
substituteInPlace data/ui/headerbar.blp \
|
|
--replace "item { custom: profile; }" 'item { custom: "profile"; }'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Reddit app, built with Python, GTK and Handy; Created with mobile Linux in mind";
|
|
maintainers = with maintainers; [ dasj19 ];
|
|
homepage = "https://gitlab.gnome.org/World/giara";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
mainProgram = "giara";
|
|
};
|
|
}
|