1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00
Files
niveum/packages/when.nix

29 lines
716 B
Nix
Raw Normal View History

2022-03-10 21:52:12 +01:00
{
lib,
stdenv,
perl,
which,
}:
2021-12-22 22:55:43 +01:00
stdenv.mkDerivation {
name = "when";
version = "1.1.40";
src = builtins.fetchTarball {
url = "http://www.lightandmatter.com/when/when.tar.gz";
sha256 = "12d0zmvg66lwzr7q8zky0kz1x3w6q8dvyzm4x7lf1vy2z4pm4cvx";
};
2022-03-10 21:52:12 +01:00
nativeBuildInputs = [which];
buildInputs = [perl];
2021-12-22 22:55:43 +01:00
2022-03-10 21:52:12 +01:00
installFlags = ["prefix=$(out)"];
2021-12-22 22:55:43 +01:00
meta = with lib; {
homepage = "http://www.lightandmatter.com/when/when.html";
description = "An extremely simple personal calendar program";
longDescription = "When is an extremely simple personal calendar program, aimed at the Unix geek who wants something minimalistic.";
license = licenses.gpl2;
platforms = platforms.all;
};
}