1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #269510 from bbenno/sway-new-workspace

sway-new-workspace: init at 0.1.5
This commit is contained in:
Emily Trau 2023-11-29 17:18:41 +11:00 committed by GitHub
commit 68cd4d021e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,27 @@
{ lib
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "sway-new-workspace";
version = "0.1.5";
src = fetchFromGitHub {
owner = "nzig";
repo = pname;
rev = version;
hash = "sha256-CoSfpsaGqNNR5jdAQys3nQxshI0NXXr8MacUnSTKFNo=";
};
cargoHash = "sha256-uGjNneIfhI49gGnH/MPTzXWjBJPdnAFggZZQfovBxDM=";
meta = with lib; {
description = "Command to create new Sway workpaces";
homepage = "https://github.com/nzig/sway-new-workspace";
license = licenses.mit;
mainProgram = "sway-new-workspace";
maintainers = with maintainers; [ bbenno ];
platforms = platforms.linux;
};
}