mirror of
https://github.com/kmein/niveum
synced 2026-03-18 11:01:07 +01:00
feat: remove nur-packages
This commit is contained in:
23
packages/when.nix
Normal file
23
packages/when.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ lib, stdenv, perl, which }:
|
||||
stdenv.mkDerivation {
|
||||
name = "when";
|
||||
version = "1.1.40";
|
||||
|
||||
src = builtins.fetchTarball {
|
||||
url = "http://www.lightandmatter.com/when/when.tar.gz";
|
||||
sha256 = "12d0zmvg66lwzr7q8zky0kz1x3w6q8dvyzm4x7lf1vy2z4pm4cvx";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ which ];
|
||||
buildInputs = [ perl ];
|
||||
|
||||
installFlags = [ "prefix=$(out)" ];
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user