Merge pull request #253177 from Smona/add-rot8

rot8: init at 0.1.5
This commit is contained in:
Weijia Wang 2023-09-07 01:18:49 +02:00 committed by GitHub
commit 59172a07da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 0 deletions

View File

@ -15963,6 +15963,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";

View File

@ -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;
};
}

View File

@ -12761,6 +12761,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 { };