mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
28 lines
654 B
Nix
28 lines
654 B
Nix
{ 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;
|
|
};
|
|
}
|