vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / tools / misc / rot8 / default.nix
blob6a62d05b5a5d558de63b1730f4520ecd94273f91
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "rot8";
5   version = "1.0.0";
7   src = fetchFromGitHub {
8     owner = "efernau";
9     repo = pname;
10     rev = "refs/tags/v${version}";
11     hash = "sha256-dHx3vFY0ztyTIlzUi22TYphPD5hvgfHrWaaeoGxnvW0=";
12   };
14   cargoHash = "sha256-KDg6Ggnm6Cl/1fXqNcc7/jRFJ6KTLVGveJ6Fs3NLlHE=";
16   meta = with lib; {
17     description = "screen rotation daemon for X11 and wlroots";
18     homepage = "https://github.com/efernau/rot8";
19     license = licenses.mit;
20     maintainers = [ maintainers.smona ];
21     mainProgram = "rot8";
22     platforms = platforms.linux;
23   };