From 3472d757747b9452dcb0110926141d0e2f738152 Mon Sep 17 00:00:00 2001 From: Eric Drechsel Date: Sat, 10 Dec 2022 20:00:36 -0800 Subject: [PATCH 1/2] add edrex to maintainers list --- maintainers/maintainer-list.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 97179337e778..d647a222bc64 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3932,6 +3932,16 @@ github = "edlimerkaj"; 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 = { email = "me@ehllie.xyz"; github = "ehllie"; From 8ef43c6cf9adfc53bc981f15977263d9af4f3b7f Mon Sep 17 00:00:00 2001 From: Eric Drechsel Date: Sat, 10 Dec 2022 20:01:25 -0800 Subject: [PATCH 2/2] lswt: init at 1.0.4 --- pkgs/applications/misc/lswt/default.nix | 28 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/applications/misc/lswt/default.nix diff --git a/pkgs/applications/misc/lswt/default.nix b/pkgs/applications/misc/lswt/default.nix new file mode 100644 index 000000000000..d6bdf77a8bdb --- /dev/null +++ b/pkgs/applications/misc/lswt/default.nix @@ -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; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5a71bdc01d07..e7d1eb9edc4f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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;