about summary refs log tree commit diff
path: root/pkgs/tools/misc/remind
diff options
context:
space:
mode:
authorJosh Holland <josh@inv.alid.pw>2021-04-13 08:27:23 +0100
committerJosh Holland <josh@inv.alid.pw>2021-04-13 09:50:52 +0100
commit14b80482e524e76548194963ba9f0990b171f704 (patch)
tree9ff521b6ed9809b4c0b457f9aae424ede1267f7c /pkgs/tools/misc/remind
parentfc6f90c526aee2b6c2af09f47bfc60c735a643f2 (diff)
remind: 03.03.05 -> 03.03.06
Also apply nixpkgs-format and change licence to gpl2Only.
Diffstat (limited to 'pkgs/tools/misc/remind')
-rw-r--r--pkgs/tools/misc/remind/default.nix24
1 files changed, 15 insertions, 9 deletions
diff --git a/pkgs/tools/misc/remind/default.nix b/pkgs/tools/misc/remind/default.nix
index bbe96bf6c2905..7b6e3ca142339 100644
--- a/pkgs/tools/misc/remind/default.nix
+++ b/pkgs/tools/misc/remind/default.nix
@@ -1,6 +1,11 @@
-{lib, stdenv, fetchurl, tk, tcllib, makeWrapper
+{ lib
+, stdenv
+, fetchurl
+, tk
+, tcllib
+, makeWrapper
 , tkremind ? true
-} :
+}:
 
 assert tkremind -> tk != null;
 assert tkremind -> tcllib != null;
@@ -14,13 +19,14 @@ let
   tkremindPatch = optionalString tkremind ''
     substituteInPlace scripts/tkremind --replace "exec wish" "exec ${tk}/bin/wish"
   '';
-in stdenv.mkDerivation rec {
+in
+stdenv.mkDerivation rec {
   pname = "remind";
-  version = "03.03.05";
+  version = "03.03.06";
 
   src = fetchurl {
     url = "https://dianne.skoll.ca/projects/remind/download/remind-${version}.tar.gz";
-    sha256 = "sha256-Ye0X2Gvek/pyaNVxGKL773OWJvC4I6F5nEsRQgzWbsE=";
+    sha256 = "sha256-lpoMAXDJxwODY0/aoo25GRBYWFhE4uf11pR5/ITZX1s=";
   };
 
   nativeBuildInputs = optional tkremind makeWrapper;
@@ -39,11 +45,11 @@ in stdenv.mkDerivation rec {
     wrapProgram $out/bin/tkremind --set TCLLIBPATH "${tclLibPaths}"
   '';
 
-  meta = {
+  meta = with lib; {
     homepage = "https://dianne.skoll.ca/projects/remind/";
     description = "Sophisticated calendar and alarm program for the console";
-    license = lib.licenses.gpl2;
-    maintainers = with lib.maintainers; [raskin kovirobi];
-    platforms = with lib.platforms; unix;
+    license = licenses.gpl2Only;
+    maintainers = with maintainers; [ raskin kovirobi ];
+    platforms = platforms.unix;
   };
 }