about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLuz <luz666@daum.net>2022-03-23 21:44:51 +0100
committerLuz <luz666@daum.net>2022-03-23 22:13:28 +0100
commit9e0b2d72883a8c6cab10570c5442549cb5915063 (patch)
treeef0ad37a0512af5484fd3454237d3e7137db2538
parentc984213d12225fa5feb640136872da56d2e8f702 (diff)
hexdino: 0.1.0 -> 0.1.1
-rw-r--r--pkgs/applications/editors/hexdino/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/editors/hexdino/default.nix b/pkgs/applications/editors/hexdino/default.nix
index 82119ae91d187..424295b12c985 100644
--- a/pkgs/applications/editors/hexdino/default.nix
+++ b/pkgs/applications/editors/hexdino/default.nix
@@ -1,17 +1,17 @@
 { lib, fetchFromGitHub, rustPlatform, ncurses }:
 
-rustPlatform.buildRustPackage {
+rustPlatform.buildRustPackage rec {
   pname = "hexdino";
-  version = "0.1.0";
+  version = "0.1.1";
 
   src = fetchFromGitHub {
     owner = "Luz";
-    repo = "hexdino";
-    rev = "de5b5d7042129f57e0ab36416a06476126bce389";
-    sha256 = "11mz07735gxqfamjcjjmxya6swlvr1p77sgd377zjcmd6z54gwyf";
+    repo = pname;
+    rev = version;
+    sha256 = "1n8gizawx8h58hpyyqivp7vwy7yhn6scipl5rrbvkpnav8qpmk1r";
   };
 
-  cargoSha256 = "1hpndmpk1zlfvb4r95m13yvnsbjkwgw4pb9ala2d5yzfp38225nm";
+  cargoSha256 = "01869b1d7gbsprcxxj7h9z16pvnzb02j2hywh97gfq5x96gnmkz3";
 
   buildInputs = [ ncurses ];