nixpkgs/pkgs/tools/wayland/wayout/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
660 B
Nix
Raw Normal View History

2022-08-04 10:44:32 +02:00
{ lib
, stdenv
, fetchFromSourcehut
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "wayout";
version = "1.1.3";
src = fetchFromSourcehut {
owner = "~shinyzenith";
repo = pname;
rev = version;
sha256 = "sha256-EzRetxx0NojhBlBPwhQ7p9rGXDUBlocVqxcEVGIF3+0=";
};
cargoSha256 = "sha256-QlxXbfeWJdCythYRRLSpJbTzKkwrL4kmAfyL3tRt194=";
meta = with lib; {
description = "Simple output management tool for wlroots based compositors implementing";
homepage = "https://git.sr.ht/~shinyzenith/wayout";
license = licenses.bsd2;
maintainers = with maintainers; [ onny ];
platforms = platforms.linux;
2022-08-04 10:44:32 +02:00
};
}