writers: add writeGuile[Bin] (#364531)
[NixPkgs.git] / pkgs / by-name / ro / rot8 / package.nix
blobc6bac9263d0735dfb3fd992dad389e1a688f38be
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "rot8";
9   version = "1.0.0";
11   src = fetchFromGitHub {
12     owner = "efernau";
13     repo = pname;
14     rev = "refs/tags/v${version}";
15     hash = "sha256-dHx3vFY0ztyTIlzUi22TYphPD5hvgfHrWaaeoGxnvW0=";
16   };
18   cargoHash = "sha256-KDg6Ggnm6Cl/1fXqNcc7/jRFJ6KTLVGveJ6Fs3NLlHE=";
20   meta = with lib; {
21     description = "screen rotation daemon for X11 and wlroots";
22     homepage = "https://github.com/efernau/rot8";
23     license = licenses.mit;
24     maintainers = [ maintainers.smona ];
25     mainProgram = "rot8";
26     platforms = platforms.linux;
27   };