mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
65 lines
1.3 KiB
Nix
65 lines
1.3 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, cairo
|
|
, fetchFromGitHub
|
|
, gobject-introspection
|
|
, gtk-layer-shell
|
|
, gtk3
|
|
, pkg-config
|
|
, wrapGAppsHook
|
|
, xdg-utils
|
|
}:
|
|
|
|
let
|
|
pname = "nwg-drawer";
|
|
version = "0.4.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nwg-piotr";
|
|
repo = "nwg-drawer";
|
|
rev = "v${version}";
|
|
hash = "sha256-rBb2ArjllCBO2+9hx3f/c+uUQD1nCZzzfQGz1Wovy/0=";
|
|
};
|
|
|
|
vendorHash = "sha256-L8gdJd5cPfQrcSXLxFx6BAVWOXC8HRuk5fFQ7MsKpIc=";
|
|
in
|
|
buildGoModule {
|
|
inherit pname version src vendorHash;
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
pkg-config
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
gtk-layer-shell
|
|
gtk3
|
|
];
|
|
|
|
doCheck = false; # Too slow
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/share/nwg-drawer
|
|
cp -r desktop-directories drawer.css $out/share/nwg-drawer
|
|
'';
|
|
|
|
preFixup = ''
|
|
# make xdg-open overrideable at runtime
|
|
gappsWrapperArgs+=(
|
|
--suffix PATH : ${xdg-utils}/bin
|
|
--prefix XDG_DATA_DIRS : $out/share
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Application drawer for sway Wayland compositor";
|
|
homepage = "https://github.com/nwg-piotr/nwg-drawer";
|
|
license = with lib.licenses; [ mit ];
|
|
mainProgram = "nwg-drawer";
|
|
maintainers = with lib.maintainers; [ AndersonTorres ];
|
|
platforms = with lib.platforms; linux;
|
|
};
|
|
}
|