nixpkgs/pkgs/applications/misc/nwg-launchers/default.nix

50 lines
923 B
Nix
Raw Normal View History

{ lib, stdenv
2020-07-15 15:45:26 +00:00
, fetchFromGitHub
, cmake
, gtkmm3
, meson
, ninja
, nlohmann_json
, pkg-config
2020-07-15 15:45:26 +00:00
, swaylock
, makeWrapper
}:
stdenv.mkDerivation rec {
pname = "nwg-launchers";
2021-02-03 18:20:18 +00:00
version = "0.4.4";
2020-07-15 15:45:26 +00:00
src = fetchFromGitHub {
owner = "nwg-piotr";
repo = pname;
rev = "v${version}";
2021-02-03 18:20:18 +00:00
sha256 = "sha256-krhFtFQZSwfKPHmVxPGNySPL2Y9+kA0fxjZ/D+mNks4=";
2020-07-15 15:45:26 +00:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
2020-07-15 15:45:26 +00:00
cmake
makeWrapper
];
buildInputs = [
gtkmm3
nlohmann_json
];
postInstall = ''
wrapProgram $out/bin/nwgbar \
--prefix PATH : "${swaylock}/bin"
'';
meta = with lib; {
2020-07-15 15:45:26 +00:00
description = "GTK-based launchers: application grid, button bar, dmenu for sway and other window managers";
homepage = "https://github.com/nwg-piotr/nwg-launchers";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ bbigras ];
};
}