Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 29 lines 707 B view raw
1{ 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5}: 6 7rustPlatform.buildRustPackage { 8 pname = "workstyle"; 9 version = "unstable-2023-08-23"; 10 11 src = fetchFromGitHub { 12 owner = "pierrechevalier83"; 13 repo = "workstyle"; 14 rev = "8bde72d9a9dd67e0fc7c0545faca53df23ed3753"; 15 sha256 = "sha256-yhnt7edhgVy/cZ6FpF6AZWPoeMeEKTXP+87no2KeIYU="; 16 }; 17 18 cargoHash = "sha256-es8kS1w71TuQ1pKb4/wXtpukWEBqUJUA+GX3uXOYbtU="; 19 20 doCheck = false; # No tests 21 22 meta = with lib; { 23 description = "Sway workspaces with style"; 24 homepage = "https://github.com/pierrechevalier83/workstyle"; 25 license = licenses.mit; 26 maintainers = with maintainers; [ FlorianFranzen ]; 27 mainProgram = "workstyle"; 28 }; 29}