mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-07 06:12:58 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
53 lines
1004 B
Nix
53 lines
1004 B
Nix
{ desktop-file-utils
|
|
, fetchFromSourcehut
|
|
, gobject-introspection
|
|
, gtk3
|
|
, lib
|
|
, libhandy
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, python3
|
|
, stdenv
|
|
, wrapGAppsHook3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "shipments";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~martijnbraam";
|
|
repo = "shipments";
|
|
rev = version;
|
|
hash = "sha256-8wX1s5mPCdMINIQP4m5q5StKqxY6CGBBxIxyQAvU7Pc=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
desktop-file-utils
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
libhandy
|
|
(python3.withPackages (ps: with ps; [
|
|
pygobject3
|
|
requests
|
|
]))
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Postal package tracking application";
|
|
mainProgram = "shipments";
|
|
homepage = "https://sr.ht/~martijnbraam/shipments/";
|
|
changelog = "https://git.sr.ht/~martijnbraam/shipments/refs/${version}";
|
|
license = licenses.lgpl3;
|
|
maintainers = with maintainers; [ michaelgrahamevans ];
|
|
};
|
|
}
|