forked from mirrors/nixpkgs
Merge pull request #130242 from Artturin/add-nwg-wrapper
This commit is contained in:
commit
8551fe61b6
41
pkgs/applications/misc/nwg-wrapper/default.nix
Normal file
41
pkgs/applications/misc/nwg-wrapper/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ lib, python3Packages, fetchFromGitHub, gtk-layer-shell, gtk3, gobject-introspection, wrapGAppsHook, wlr-randr }:
|
||||
|
||||
python3Packages.buildPythonPackage rec {
|
||||
pname = "nwg-wrapper";
|
||||
version = "0.0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nwg-piotr";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1rpkcjr0chmgsfkan88lsi476bamg9a6y7h0x9zsh60a9rdf7dl8";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ gobject-introspection wrapGAppsHook ];
|
||||
|
||||
buildInputs = [ gtk3 gtk-layer-shell ];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [ i3ipc pygobject3 ];
|
||||
|
||||
# ValueError: Namespace GtkLayerShell not available
|
||||
strictDeps = false;
|
||||
|
||||
# No tests
|
||||
doCheck = false;
|
||||
|
||||
preFixup = ''
|
||||
makeWrapperArgs+=(
|
||||
"''${gappsWrapperArgs[@]}"
|
||||
--prefix PATH : "${lib.makeBinPath [ wlr-randr ]}"
|
||||
)
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "nwg_wrapper" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Wrapper to display a script output or a text file content on the desktop in sway or other wlroots-based compositors";
|
||||
homepage = "https://github.com/nwg-piotr/nwg-wrapper/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ artturin ];
|
||||
};
|
||||
}
|
|
@ -25880,6 +25880,8 @@ in
|
|||
|
||||
nwg-panel = callPackage ../applications/misc/nwg-panel { };
|
||||
|
||||
nwg-wrapper = callPackage ../applications/misc/nwg-wrapper { };
|
||||
|
||||
ocenaudio = callPackage ../applications/audio/ocenaudio { };
|
||||
|
||||
onlyoffice-bin = callPackage ../applications/office/onlyoffice-bin { };
|
||||
|
|
Loading…
Reference in a new issue