Merge pull request #253177 from Smona/add-rot8

rot8: init at 0.1.5

authored by Weijia Wang and committed by GitHub 59172a07 3aa9ab22

+35
+9
maintainers/maintainer-list.nix
··· 15963 github = "syvb"; 15964 githubId = 10530973; 15965 }; 15966 sna = { 15967 email = "abouzahra.9@wright.edu"; 15968 github = "S-NA";
··· 15963 github = "syvb"; 15964 githubId = 10530973; 15965 }; 15966 + smona = { 15967 + name = "Mel Bourgeois"; 15968 + email = "mason.bourgeois@gmail.com"; 15969 + github = "Smona"; 15970 + githubId = 7091399; 15971 + keys = [{ 15972 + fingerprint = "897E 6BE3 0345 B43D CADD 05B7 290F CF08 1AED B3EC"; 15973 + }]; 15974 + }; 15975 sna = { 15976 email = "abouzahra.9@wright.edu"; 15977 github = "S-NA";
+24
pkgs/tools/misc/rot8/default.nix
···
··· 1 + { lib, fetchFromGitHub, rustPlatform }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "rot8"; 5 + version = "0.1.5"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "efernau"; 9 + repo = pname; 10 + rev = "refs/tags/v${version}"; 11 + hash = "sha256-i+VLVA/XKZiFPEeFHR3CpZKi8CWA/tiaZJerciqQHJ0="; 12 + }; 13 + 14 + cargoHash = "sha256-Zz3RK79pMBn9JcpOVHf8vrvQzOJuV7anm136HcTBhJE="; 15 + 16 + meta = with lib; { 17 + description = "screen rotation daemon for X11 and sway"; 18 + homepage = "https://github.com/efernau/rot8"; 19 + license = licenses.mit; 20 + maintainers = [ maintainers.smona ]; 21 + mainProgram = pname; 22 + platforms = platforms.linux; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 12761 12762 rosegarden = libsForQt5.callPackage ../applications/audio/rosegarden { }; 12763 12764 rowhammer-test = callPackage ../tools/system/rowhammer-test { }; 12765 12766 rpPPPoE = callPackage ../tools/networking/rp-pppoe { };
··· 12761 12762 rosegarden = libsForQt5.callPackage ../applications/audio/rosegarden { }; 12763 12764 + rot8 = callPackage ../tools/misc/rot8 { }; 12765 + 12766 rowhammer-test = callPackage ../tools/system/rowhammer-test { }; 12767 12768 rpPPPoE = callPackage ../tools/networking/rp-pppoe { };