about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVinny Meller <vinnymeller@gmail.com>2023-04-18 01:00:49 -0500
committerVinny Meller <vinnymeller@gmail.com>2023-04-18 14:12:30 -0500
commit6f6df175b00805eed4385393f7f18ad7f07f41ce (patch)
treea39b053af0961c62b160c7ab44d4e25df9ed9917
parent220889f0693af75ad6dfbc9b76198f2163ff9cc6 (diff)
twm: 0.1.1 -> 0.4.0
-rw-r--r--pkgs/tools/misc/twm/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/misc/twm/default.nix b/pkgs/tools/misc/twm/default.nix
index 9109547a1d33c..524f74f33182a 100644
--- a/pkgs/tools/misc/twm/default.nix
+++ b/pkgs/tools/misc/twm/default.nix
@@ -9,16 +9,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "twm";
-  version = "0.1.1";
+  version = "0.4.0";
 
   src = fetchFromGitHub {
     owner = "vinnymeller";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-YURzNHbmGLEqNEcc4FImIqn/KcRwGdxYXM5QzM3dxbo=";
+    sha256 = "sha256-CC3FlEX86mrRi+TFOoswHEaxKbvFm5fHSqbikgZdPA8=";
   };
 
-  cargoHash = "sha256-sc2/eQZjY1x5KIzQ+yr8NgAMKJ6iHWwCy6fRSBp7Fw4=";
+  cargoHash = "sha256-TCqXoFkxwqYuztaPdtfcSVL6psYkVaafOrUT6bUd8ig=";
 
   nativeBuildInputs = [ pkg-config ];
   buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ];
@@ -26,6 +26,7 @@ rustPlatform.buildRustPackage rec {
   meta = with lib; {
     description = "A customizable workspace manager for tmux";
     homepage = "https://github.com/vinnymeller/twm";
+    changelog = "https://github.com/vinnymeller/twm/releases/tag/v${version}";
     license = licenses.gpl2Only;
     maintainers = with maintainers; [ vinnymeller ];
   };