lswt: init at 1.0.4

This commit is contained in:
Eric Drechsel 2022-12-10 20:01:25 -08:00
parent 3472d75774
commit 8ef43c6cf9
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib, stdenv, fetchFromSourcehut, nixos, wayland }:
stdenv.mkDerivation rec {
pname = "lswt";
version = "1.0.4";
src = fetchFromSourcehut {
owner = "~leon_plickat";
repo = pname;
rev = "v${version}";
hash = "sha256-Orwa7sV56AeznEcq/Xj5qj4PALMxq0CI+ZnXuY4JYE0=";
};
buildInputs = [ wayland ];
makeFlags = [
"DESTDIR=${placeholder "out"}"
"PREFIX="
];
meta = with lib; {
description = "A command that lists Wayland toplevels";
homepage = "https://sr.ht/~leon_plickat/lswt";
license = licenses.gpl3Only;
maintainers = with maintainers; [ edrex ];
platforms = platforms.linux;
};
}

View File

@ -30352,6 +30352,8 @@ with pkgs;
lscolors = callPackage ../applications/misc/lscolors { };
lswt = callPackage ../applications/misc/lswt { };
luddite = with python3Packages; toPythonApplication luddite;
goobook = with python3Packages; toPythonApplication goobook;