summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-04-05 11:44:28 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2020-04-05 11:44:28 +0000
commit17b5600bf70e83723ee72e745876e48a9f207077 (patch)
treea7b62f7bb59d83db43cd039a00a60aa2ebcc4c9e /pkgs
parente50c67ad7eefa8e77436fbd0366b69638b1c8713 (diff)
downloadnixpkgs-17b5600bf70e83723ee72e745876e48a9f207077.tar
nixpkgs-17b5600bf70e83723ee72e745876e48a9f207077.tar.gz
nixpkgs-17b5600bf70e83723ee72e745876e48a9f207077.tar.bz2
nixpkgs-17b5600bf70e83723ee72e745876e48a9f207077.tar.lz
nixpkgs-17b5600bf70e83723ee72e745876e48a9f207077.tar.xz
nixpkgs-17b5600bf70e83723ee72e745876e48a9f207077.tar.zst
nixpkgs-17b5600bf70e83723ee72e745876e48a9f207077.zip
byacc: 20191125 -> 20200330
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/parsing/byacc/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/parsing/byacc/default.nix b/pkgs/development/tools/parsing/byacc/default.nix
index 79e171d5fd7..be526085b75 100644
--- a/pkgs/development/tools/parsing/byacc/default.nix
+++ b/pkgs/development/tools/parsing/byacc/default.nix
@@ -2,14 +2,14 @@
 
 stdenv.mkDerivation rec {
   pname = "byacc";
-  version = "20191125";
+  version = "20200330";
 
   src = fetchurl {
     urls = [
       "ftp://ftp.invisible-island.net/byacc/${pname}-${version}.tgz"
       "https://invisible-mirror.net/archives/byacc/${pname}-${version}.tgz"
     ];
-    sha256 = "1phw8410ly3msv03dmjfi8xkmrl1lrrk928fp1489amg6sz2w707";
+    sha256 = "1c0zyn6v286i09jlc8gx6jyaa5438qyy985rqsd76kb8ibfy56g0";
   };
 
   configureFlags = [
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Berkeley YACC";
-    homepage = https://invisible-island.net/byacc/byacc.html;
+    homepage = "https://invisible-island.net/byacc/byacc.html";
     license = licenses.publicDomain;
     platforms = platforms.unix;
   };