Unverified Commit 59172a07 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #253177 from Smona/add-rot8

rot8: init at 0.1.5
parents 3aa9ab22 f07ef496
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };