remind: 03.03.05 -> 03.03.06
Also apply nixpkgs-format and change licence to gpl2Only.
This commit is contained in:
parent
fc6f90c526
commit
14b80482e5
@ -1,4 +1,9 @@
|
|||||||
{lib, stdenv, fetchurl, tk, tcllib, makeWrapper
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, tk
|
||||||
|
, tcllib
|
||||||
|
, makeWrapper
|
||||||
, tkremind ? true
|
, tkremind ? true
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -14,13 +19,14 @@ let
|
|||||||
tkremindPatch = optionalString tkremind ''
|
tkremindPatch = optionalString tkremind ''
|
||||||
substituteInPlace scripts/tkremind --replace "exec wish" "exec ${tk}/bin/wish"
|
substituteInPlace scripts/tkremind --replace "exec wish" "exec ${tk}/bin/wish"
|
||||||
'';
|
'';
|
||||||
in stdenv.mkDerivation rec {
|
in
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
pname = "remind";
|
pname = "remind";
|
||||||
version = "03.03.05";
|
version = "03.03.06";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://dianne.skoll.ca/projects/remind/download/remind-${version}.tar.gz";
|
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;
|
nativeBuildInputs = optional tkremind makeWrapper;
|
||||||
@ -39,11 +45,11 @@ in stdenv.mkDerivation rec {
|
|||||||
wrapProgram $out/bin/tkremind --set TCLLIBPATH "${tclLibPaths}"
|
wrapProgram $out/bin/tkremind --set TCLLIBPATH "${tclLibPaths}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
homepage = "https://dianne.skoll.ca/projects/remind/";
|
homepage = "https://dianne.skoll.ca/projects/remind/";
|
||||||
description = "Sophisticated calendar and alarm program for the console";
|
description = "Sophisticated calendar and alarm program for the console";
|
||||||
license = lib.licenses.gpl2;
|
license = licenses.gpl2Only;
|
||||||
maintainers = with lib.maintainers; [raskin kovirobi];
|
maintainers = with maintainers; [ raskin kovirobi ];
|
||||||
platforms = with lib.platforms; unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user