commit
d1e346fa5f
3 changed files with 40 additions and 0 deletions
|
@ -3947,6 +3947,16 @@
|
||||||
github = "edlimerkaj";
|
github = "edlimerkaj";
|
||||||
githubId = 71988351;
|
githubId = 71988351;
|
||||||
};
|
};
|
||||||
|
edrex = {
|
||||||
|
email = "ericdrex@gmail.com";
|
||||||
|
github = "edrex";
|
||||||
|
githubId = 14615;
|
||||||
|
keys = [{
|
||||||
|
fingerprint = "AC47 2CCC 9867 4644 A9CF EB28 1C5C 1ED0 9F66 6824";
|
||||||
|
}];
|
||||||
|
matrix = "@edrex:matrix.org";
|
||||||
|
name = "Eric Drechsel";
|
||||||
|
};
|
||||||
ehllie = {
|
ehllie = {
|
||||||
email = "me@ehllie.xyz";
|
email = "me@ehllie.xyz";
|
||||||
github = "ehllie";
|
github = "ehllie";
|
||||||
|
|
28
pkgs/applications/misc/lswt/default.nix
Normal file
28
pkgs/applications/misc/lswt/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -30384,6 +30384,8 @@ with pkgs;
|
||||||
|
|
||||||
lscolors = callPackage ../applications/misc/lscolors { };
|
lscolors = callPackage ../applications/misc/lscolors { };
|
||||||
|
|
||||||
|
lswt = callPackage ../applications/misc/lswt { };
|
||||||
|
|
||||||
luddite = with python3Packages; toPythonApplication luddite;
|
luddite = with python3Packages; toPythonApplication luddite;
|
||||||
|
|
||||||
goobook = with python3Packages; toPythonApplication goobook;
|
goobook = with python3Packages; toPythonApplication goobook;
|
||||||
|
|
Loading…
Reference in a new issue