summary refs log tree commit diff
path: root/pkgs/development/compilers/teyjus
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-09 14:23:54 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-03-09 14:23:54 -0800
commit28e31f1c07fc24356ad1e4c444138b736b2a9991 (patch)
treed50ab0dce5e6150b2c76548483fd05296d3817b5 /pkgs/development/compilers/teyjus
parentf93f9f6025f703978423c6d7d9da59c27e120487 (diff)
downloadnixpkgs-28e31f1c07fc24356ad1e4c444138b736b2a9991.tar
nixpkgs-28e31f1c07fc24356ad1e4c444138b736b2a9991.tar.gz
nixpkgs-28e31f1c07fc24356ad1e4c444138b736b2a9991.tar.bz2
nixpkgs-28e31f1c07fc24356ad1e4c444138b736b2a9991.tar.lz
nixpkgs-28e31f1c07fc24356ad1e4c444138b736b2a9991.tar.xz
nixpkgs-28e31f1c07fc24356ad1e4c444138b736b2a9991.tar.zst
nixpkgs-28e31f1c07fc24356ad1e4c444138b736b2a9991.zip
teyjus: 2.0b2 -> 2.1
Semi-automatic update. These checks were done:

- built on NixOS
- ran `/nix/store/s3a893figs9wwy07swfzxbf2ai7g6f1d-teyjus-2.1/bin/tjcc --help` got 0 exit code
- ran `/nix/store/s3a893figs9wwy07swfzxbf2ai7g6f1d-teyjus-2.1/bin/tjdepend --help` got 0 exit code
- ran `/nix/store/s3a893figs9wwy07swfzxbf2ai7g6f1d-teyjus-2.1/bin/tjdis --help` got 0 exit code
- ran `/nix/store/s3a893figs9wwy07swfzxbf2ai7g6f1d-teyjus-2.1/bin/tjlink --help` got 0 exit code
- ran `/nix/store/s3a893figs9wwy07swfzxbf2ai7g6f1d-teyjus-2.1/bin/tjsim --help` got 0 exit code
- found 2.1 with grep in /nix/store/s3a893figs9wwy07swfzxbf2ai7g6f1d-teyjus-2.1
- found 2.1 in filename of file in /nix/store/s3a893figs9wwy07swfzxbf2ai7g6f1d-teyjus-2.1
Diffstat (limited to 'pkgs/development/compilers/teyjus')
-rw-r--r--pkgs/development/compilers/teyjus/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/teyjus/default.nix b/pkgs/development/compilers/teyjus/default.nix
index 222a22bf1cd..53ab4ec0e85 100644
--- a/pkgs/development/compilers/teyjus/default.nix
+++ b/pkgs/development/compilers/teyjus/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, omake, ocaml, flex, bison }:
 
 stdenv.mkDerivation {
-  name = "teyjus-2.0b2";
+  name = "teyjus-2.1";
 
   src = fetchurl {
     url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/teyjus/teyjus-source-2.0-b2.tar.gz";
-    sha256 = "f589fb460d7095a6e674b7a6413772c41b98654c38602c3e8c477a976da99052";
+    sha256 = "0llhm5nrfyj7ihz2qq1q9ijrh6y4f8vl39mpfkkad5bh1m3gp2gm";
   };
 
   patches = [ ./fix-lex-to-flex.patch ];