aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/misc/remind/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/misc/remind/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/misc/remind/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/nixpkgs/pkgs/tools/misc/remind/default.nix b/nixpkgs/pkgs/tools/misc/remind/default.nix
index 46f78ddb093..5c7fa9d4c24 100644
--- a/nixpkgs/pkgs/tools/misc/remind/default.nix
+++ b/nixpkgs/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;