about summary refs log tree commit diff
path: root/pkgs/tools/misc/gosu
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2022-12-20 00:48:08 +0000
committerAaron Jheng <wentworth@outlook.com>2022-12-20 01:06:21 +0000
commit1173a67dab80a5f77613faf0a8e40dcdc1eff65d (patch)
treef4a99653c70226c4b3ccfd8c0bdf0a7d36455932 /pkgs/tools/misc/gosu
parentd99ec2c9bcbb8322ce9a0e6f76f786566d4ab447 (diff)
gosu: 1.14 -> 1.16
Diffstat (limited to 'pkgs/tools/misc/gosu')
-rw-r--r--pkgs/tools/misc/gosu/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/misc/gosu/default.nix b/pkgs/tools/misc/gosu/default.nix
index 80daf996b8559..df42c6ea94955 100644
--- a/pkgs/tools/misc/gosu/default.nix
+++ b/pkgs/tools/misc/gosu/default.nix
@@ -2,16 +2,16 @@
 
 buildGoModule rec {
   pname = "gosu";
-  version = "1.14";
+  version = "1.16";
 
   src = fetchFromGitHub {
     owner = "tianon";
     repo = "gosu";
     rev = version;
-    sha256 = "sha256-qwoHQB37tY8Pz8CHleYZI+SGkbHG7P/vgfXVMSyqi10=";
+    hash = "sha256-UfrhrwsnDT7pfizQtQzqv/1FTMBTrk3qmtiR7ffwwhc=";
   };
 
-  vendorSha256 = "sha256-yxrOLCtSrY/a84N5yRWGUx1L425TckjvRyn/rtkzsRY=";
+  vendorHash = "sha256-3HIAPI1bbfwE2/cUsQnp2Vz2uvlvSFDUrp2xuGNr8Gk=";
 
   ldflags = [ "-d" "-s" "-w" ];
 
@@ -22,8 +22,8 @@ buildGoModule rec {
   meta = with lib; {
     description = "Tool that avoids TTY and signal-forwarding behavior of sudo and su";
     homepage = "https://github.com/tianon/gosu";
-    license = lib.licenses.gpl3;
+    license = licenses.asl20;
     maintainers = with maintainers; [ aaronjheng ];
-    platforms = lib.platforms.linux;
+    platforms = platforms.linux;
   };
 }