nixpkgs/pkgs/applications/misc/remontoire/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

60 lines
1.1 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, wrapGAppsHook3
, desktop-file-utils
, glib
, gtk3
, json-glib
, libgee
, librsvg
, meson
, ninja
, pkg-config
, python3
, vala
}:
stdenv.mkDerivation (finalAttrs: {
pname = "remontoire";
version = "unstable-2022-06-19";
src = fetchFromGitHub {
owner = "regolith-linux";
repo = "remontoire";
rev = "68d562c78d6e0094ca744bd7161c308f583e93e";
hash = "sha256-Cb6tzTGZdQA9oA04DO/xLBw5F+FRj5BM2Aa62YWGmZA=";
};
nativeBuildInputs = [
glib
meson
ninja
pkg-config
python3
vala
wrapGAppsHook3
desktop-file-utils
];
buildInputs = [
gtk3
json-glib
libgee
];
postPatch = ''
chmod +x build-aux/meson/postinstall.py
patchShebangs build-aux/meson/postinstall.py
'';
meta = with lib; {
description = "Small GTK app for presenting keybinding hints";
mainProgram = "remontoire";
homepage = "https://github.com/regolith-linux/remontoire";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ aacebedo ];
};
})