571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, python3Packages, fetchFromGitHub, gtk-layer-shell, gtk3, gobject-introspection, wrapGAppsHook3, wlr-randr }:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "nwg-wrapper";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nwg-piotr";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-GKDAdjO67aedCEFHKDukQ+oPMomTPwFE/CvJu112fus=";
|
|
};
|
|
|
|
nativeBuildInputs = [ gobject-introspection wrapGAppsHook3 ];
|
|
|
|
buildInputs = [ gtk3 gtk-layer-shell ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [ i3ipc pygobject3 ];
|
|
|
|
# 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";
|
|
mainProgram = "nwg-wrapper";
|
|
homepage = "https://github.com/nwg-piotr/nwg-wrapper/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ artturin ];
|
|
};
|
|
}
|