summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-29 20:48:50 -0700
committerobadz <obadz-git@obadz.com>2018-03-30 10:44:19 +0100
commit5cb20780157c40d8ae6e4a63bf5cb8835e2eb094 (patch)
treef0fda2ee3321f08d8ba7ef88f5fac5decd0d8724 /pkgs/tools/text
parentdc13867e99410b9f96e2b8f7a80e4247eeb1caf3 (diff)
downloadnixpkgs-5cb20780157c40d8ae6e4a63bf5cb8835e2eb094.tar
nixpkgs-5cb20780157c40d8ae6e4a63bf5cb8835e2eb094.tar.gz
nixpkgs-5cb20780157c40d8ae6e4a63bf5cb8835e2eb094.tar.bz2
nixpkgs-5cb20780157c40d8ae6e4a63bf5cb8835e2eb094.tar.lz
nixpkgs-5cb20780157c40d8ae6e4a63bf5cb8835e2eb094.tar.xz
nixpkgs-5cb20780157c40d8ae6e4a63bf5cb8835e2eb094.tar.zst
nixpkgs-5cb20780157c40d8ae6e4a63bf5cb8835e2eb094.zip
diction: 1.11 -> 1.13
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/diction/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/7583849c1dwqg9ryxy8ws0y8sagnxm1s-diction-1.13/bin/diction -h` got 0 exit code
- ran `/nix/store/7583849c1dwqg9ryxy8ws0y8sagnxm1s-diction-1.13/bin/diction --help` got 0 exit code
- ran `/nix/store/7583849c1dwqg9ryxy8ws0y8sagnxm1s-diction-1.13/bin/diction help` got 0 exit code
- ran `/nix/store/7583849c1dwqg9ryxy8ws0y8sagnxm1s-diction-1.13/bin/diction --version` and found version 1.13
- ran `/nix/store/7583849c1dwqg9ryxy8ws0y8sagnxm1s-diction-1.13/bin/style -h` got 0 exit code
- ran `/nix/store/7583849c1dwqg9ryxy8ws0y8sagnxm1s-diction-1.13/bin/style --help` got 0 exit code
- ran `/nix/store/7583849c1dwqg9ryxy8ws0y8sagnxm1s-diction-1.13/bin/style help` got 0 exit code
- ran `/nix/store/7583849c1dwqg9ryxy8ws0y8sagnxm1s-diction-1.13/bin/style --version` and found version 1.13
- found 1.13 with grep in /nix/store/7583849c1dwqg9ryxy8ws0y8sagnxm1s-diction-1.13
- directory tree listing: https://gist.github.com/e06700dfb7b8b7cf0f1f8e7e6f84aba6
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/diction/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/text/diction/default.nix b/pkgs/tools/text/diction/default.nix
index bf27fc3de5d..cfb627d7042 100644
--- a/pkgs/tools/text/diction/default.nix
+++ b/pkgs/tools/text/diction/default.nix
@@ -1,11 +1,12 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "diction-1.11";
+  name = "diction-${version}";
+  version = "1.13";
 
   src = fetchurl {
-    url = "mirror://gnu/diction/${name}.tar.gz";
-    sha256 = "1xi4l1x1vvzmzmbhpx0ghmfnwwrhabjwizrpyylmy3fzinzz3him";
+    url = "http://www.moria.de/~michael/diction/${name}.tar.gz";
+    sha256 = "08fi971b8qa4xycxbgb42i6b5ms3qx9zpp5hwpbxy2vypfs0wph9";
   };
 
   meta = {