summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2022-06-04 08:27:01 -0300
committerGitHub <noreply@github.com>2022-06-04 08:27:01 -0300
commitb3a4080baf4ef144c299dd11f224dd7cb4af292a (patch)
tree520ade22565128e157e40de8c0154a590e0e1564 /pkgs/shells
parentd17c1a3892597ceb28c1a803f1354affcb42216c (diff)
parentc428ad43d1c6cb00bdfdbd5d03d24a98544e0760 (diff)
downloadnixpkgs-b3a4080baf4ef144c299dd11f224dd7cb4af292a.tar
nixpkgs-b3a4080baf4ef144c299dd11f224dd7cb4af292a.tar.gz
nixpkgs-b3a4080baf4ef144c299dd11f224dd7cb4af292a.tar.bz2
nixpkgs-b3a4080baf4ef144c299dd11f224dd7cb4af292a.tar.lz
nixpkgs-b3a4080baf4ef144c299dd11f224dd7cb4af292a.tar.xz
nixpkgs-b3a4080baf4ef144c299dd11f224dd7cb4af292a.tar.zst
nixpkgs-b3a4080baf4ef144c299dd11f224dd7cb4af292a.zip
Merge pull request #176029 from AndersonTorres/SRI-hashes
Treewide: change hashes to SRI format
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/yash/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/yash/default.nix b/pkgs/shells/yash/default.nix
index 01340df5e9a..773801eca17 100644
--- a/pkgs/shells/yash/default.nix
+++ b/pkgs/shells/yash/default.nix
@@ -6,15 +6,15 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "https://osdn.net/dl/yash/yash-${version}.tar.xz";
-    sha256 = "sha256:1jdmj4cyzwxxyyqf20y1zi578h7md860ryffp02qi143zpppn4sm";
+    hash = "sha256-VRN77/2DhIgFuM75DAxq9UB0SvzBA+Gw973z7xmRtck=";
   };
 
   strictDeps = true;
   buildInputs = [ gettext ncurses ];
 
   meta = with lib; {
-    description = "Yet another POSIX-compliant shell";
     homepage = "https://yash.osdn.jp/index.html.en";
+    description = "Yet another POSIX-compliant shell";
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ qbit ];
     platforms = platforms.all;