From 44d193a01b5d4a0c3343199e300b1837a0d0cea2 Mon Sep 17 00:00:00 2001 From: Mel Bourgeois Date: Sun, 3 Sep 2023 16:47:06 -0500 Subject: [PATCH 1/2] maintainers: add smona --- maintainers/maintainer-list.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index b99333277213..e6eae2dc094c 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -15925,6 +15925,15 @@ github = "syvb"; githubId = 10530973; }; + smona = { + name = "Mel Bourgeois"; + email = "mason.bourgeois@gmail.com"; + github = "Smona"; + githubId = 7091399; + keys = [{ + fingerprint = "897E 6BE3 0345 B43D CADD 05B7 290F CF08 1AED B3EC"; + }]; + }; sna = { email = "abouzahra.9@wright.edu"; github = "S-NA"; From f07ef496bc463c6e7efe6069d1cabe5757e3b90e Mon Sep 17 00:00:00 2001 From: Mel Bourgeois Date: Sun, 3 Sep 2023 16:58:23 -0500 Subject: [PATCH 2/2] rot8: init at 0.1.5 --- pkgs/tools/misc/rot8/default.nix | 24 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/tools/misc/rot8/default.nix diff --git a/pkgs/tools/misc/rot8/default.nix b/pkgs/tools/misc/rot8/default.nix new file mode 100644 index 000000000000..5747e72918a3 --- /dev/null +++ b/pkgs/tools/misc/rot8/default.nix @@ -0,0 +1,24 @@ +{ lib, fetchFromGitHub, rustPlatform }: + +rustPlatform.buildRustPackage rec { + pname = "rot8"; + version = "0.1.5"; + + src = fetchFromGitHub { + owner = "efernau"; + repo = pname; + rev = "refs/tags/v${version}"; + hash = "sha256-i+VLVA/XKZiFPEeFHR3CpZKi8CWA/tiaZJerciqQHJ0="; + }; + + cargoHash = "sha256-Zz3RK79pMBn9JcpOVHf8vrvQzOJuV7anm136HcTBhJE="; + + meta = with lib; { + description = "screen rotation daemon for X11 and sway"; + homepage = "https://github.com/efernau/rot8"; + license = licenses.mit; + maintainers = [ maintainers.smona ]; + mainProgram = pname; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 03c2bae7a753..e2a9b168d5cf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12767,6 +12767,8 @@ with pkgs; rosegarden = libsForQt5.callPackage ../applications/audio/rosegarden { }; + rot8 = callPackage ../tools/misc/rot8 { }; + rowhammer-test = callPackage ../tools/system/rowhammer-test { }; rpPPPoE = callPackage ../tools/networking/rp-pppoe { };