nixpkgs/pkgs/by-name/sw/swayws/package.nix

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

31 lines
821 B
Nix
Raw Normal View History

2022-08-23 22:27:22 +03:00
{ lib, fetchFromGitLab, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "swayws";
version = "1.2.0";
2022-08-23 22:27:22 +03:00
src = fetchFromGitLab {
owner = "w0lff";
repo = pname;
rev = "v${version}";
hash = "sha256-f0kXy7/31imgHHqKPmW9K+QrLqroaPaXwlJkzOoezRU=";
2022-08-23 22:27:22 +03:00
};
cargoHash = "sha256-VYT6wV59fraAoJgR/i6GlO8s7LUoehGtxPAggEL1eLo=";
# Required patch until upstream fixes https://gitlab.com/w0lff/swayws/-/issues/1
cargoPatches = [
./ws-update-Cargo-lock.patch
];
2022-08-23 22:27:22 +03:00
# swayws does not have any tests
doCheck = false;
meta = with lib; {
description = "Sway workspace tool which allows easy moving of workspaces to and from outputs";
mainProgram = "swayws";
2022-08-23 22:27:22 +03:00
homepage = "https://gitlab.com/w0lff/swayws";
license = licenses.mit;
maintainers = [ maintainers.atila ];
};
}