summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-12-19 21:11:16 -0500
committerGitHub <noreply@github.com>2022-12-19 21:11:16 -0500
commitbf4b841370b89f8d2769a2119876ef09d7580167 (patch)
tree4d60a23edc6a0d1a3073f1314fa4ed1f784e95f8 /pkgs
parentd26cf9a9bdc5eeb31e8966084d4811f26ecf64fe (diff)
parent1173a67dab80a5f77613faf0a8e40dcdc1eff65d (diff)
downloadnixpkgs-bf4b841370b89f8d2769a2119876ef09d7580167.tar
nixpkgs-bf4b841370b89f8d2769a2119876ef09d7580167.tar.gz
nixpkgs-bf4b841370b89f8d2769a2119876ef09d7580167.tar.bz2
nixpkgs-bf4b841370b89f8d2769a2119876ef09d7580167.tar.lz
nixpkgs-bf4b841370b89f8d2769a2119876ef09d7580167.tar.xz
nixpkgs-bf4b841370b89f8d2769a2119876ef09d7580167.tar.zst
nixpkgs-bf4b841370b89f8d2769a2119876ef09d7580167.zip
Merge pull request #206954 from aaronjheng/gosu
gosu: 1.14 -> 1.16
Diffstat (limited to 'pkgs')
-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 80daf996b85..df42c6ea949 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;
   };
 }