about summary refs log tree commit diff
path: root/pkgs/tools/misc/remind
diff options
context:
space:
mode:
authorMarkus Hauck <markus1189@gmail.com>2020-07-21 15:38:18 +0200
committerMarkus Hauck <markus1189@gmail.com>2020-07-21 15:41:35 +0200
commit90080bcf8db5d561e9cbebc658d168096e0e2182 (patch)
treecda3c2becffabb32a6ba7ad58d9f3b46b1972828 /pkgs/tools/misc/remind
parentd5f7c6ed3c3e65ee5f50c4867591ac2bf42d2626 (diff)
remind: 03.01.16 -> 03.03.01
Diffstat (limited to 'pkgs/tools/misc/remind')
-rw-r--r--pkgs/tools/misc/remind/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/tools/misc/remind/default.nix b/pkgs/tools/misc/remind/default.nix
index 46f78ddb093f4..5c7fa9d4c2497 100644
--- a/pkgs/tools/misc/remind/default.nix
+++ b/pkgs/tools/misc/remind/default.nix
@@ -14,11 +14,13 @@ let
   tkremindPatch = optionalString tkremind ''
     substituteInPlace scripts/tkremind --replace "exec wish" "exec ${tk}/bin/wish"
   '';
-in stdenv.mkDerivation {
-  name = "remind-3.1.16";
+in stdenv.mkDerivation rec {
+  pname = "remind";
+  version = "03.03.01";
+
   src = fetchurl {
-    url = "https://dianne.skoll.ca/projects/remind/download/remind-03.01.16.tar.gz";
-    sha256 = "14yavwqmimba8rdpwx3wlav9sfb0v5rcd1iyzqrs08wx07a9pdzf";
+    url = "https://dianne.skoll.ca/projects/remind/download/remind-${version}.tar.gz";
+    sha256 = "0y4l960529sl3sn4r4g36qpy3jk5h1x4algjy7an7sfiqb8n98fi";
   };
 
   nativeBuildInputs = optional tkremind makeWrapper;