rot8: init at 0.1.5

This commit is contained in:
Mel Bourgeois 2023-09-03 16:58:23 -05:00
parent 44d193a01b
commit f07ef496bc
No known key found for this signature in database
GPG key ID: 290FCF081AEDB3EC
2 changed files with 26 additions and 0 deletions

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

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