commit
59172a07da
3 changed files with 35 additions and 0 deletions
|
@ -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";
|
||||
|
|
24
pkgs/tools/misc/rot8/default.nix
Normal file
24
pkgs/tools/misc/rot8/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue