remontoire: init at unstable-2022-06-19

authored by

Alexandre Acebedo and committed by
Anderson Torres
710f512b a6fe0bca

+60
+58
pkgs/applications/misc/remontoire/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , wrapGAppsHook 5 + , desktop-file-utils 6 + , glib 7 + , gtk3 8 + , json-glib 9 + , libgee 10 + , librsvg 11 + , meson 12 + , ninja 13 + , pkg-config 14 + , python3 15 + , vala 16 + }: 17 + 18 + stdenv.mkDerivation (finalAttrs: { 19 + pname = "remontoire"; 20 + version = "unstable-2022-06-19"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "regolith-linux"; 24 + repo = "remontoire"; 25 + rev = "68d562c78d6e0094ca744bd7161c308f583e93e"; 26 + hash = "sha256-Cb6tzTGZdQA9oA04DO/xLBw5F+FRj5BM2Aa62YWGmZA="; 27 + }; 28 + 29 + nativeBuildInputs = [ 30 + glib 31 + meson 32 + ninja 33 + pkg-config 34 + python3 35 + vala 36 + wrapGAppsHook 37 + desktop-file-utils 38 + ]; 39 + 40 + buildInputs = [ 41 + gtk3 42 + json-glib 43 + libgee 44 + ]; 45 + 46 + postPatch = '' 47 + chmod +x build-aux/meson/postinstall.py 48 + patchShebangs build-aux/meson/postinstall.py 49 + ''; 50 + 51 + meta = with lib; { 52 + description = "A small GTK app for presenting keybinding hints"; 53 + homepage = "https://github.com/regolith-linux/remontoire"; 54 + license = licenses.gpl3Plus; 55 + platforms = platforms.linux; 56 + maintainers = with maintainers; [ aacebedo ]; 57 + }; 58 + })
+2
pkgs/top-level/all-packages.nix
··· 32554 32554 32555 32555 rlaunch = callPackage ../applications/misc/rlaunch { }; 32556 32556 32557 + remontoire = callPackage ../applications/misc/remontoire { }; 32558 + 32557 32559 rootbar = callPackage ../applications/misc/rootbar { }; 32558 32560 32559 32561 waybar = callPackage ../applications/misc/waybar { };