slackdump: 3.0.3 -> 3.0.5 (#379390)
[NixPkgs.git] / pkgs / by-name / sw / sway-new-workspace / package.nix
bloba38583a1d1e3a1f4aae4146a8bbe83833607e749
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "sway-new-workspace";
9   version = "0.1.5";
11   src = fetchFromGitHub {
12     owner = "nzig";
13     repo = pname;
14     rev = version;
15     hash = "sha256-CoSfpsaGqNNR5jdAQys3nQxshI0NXXr8MacUnSTKFNo=";
16   };
18   cargoHash = "sha256-uGjNneIfhI49gGnH/MPTzXWjBJPdnAFggZZQfovBxDM=";
20   meta = with lib; {
21     description = "Command to create new Sway workpaces";
22     homepage = "https://github.com/nzig/sway-new-workspace";
23     license = licenses.mit;
24     mainProgram = "sway-new-workspace";
25     maintainers = with maintainers; [ bbenno ];
26     platforms = platforms.linux;
27   };