nixpkgs/pkgs/applications/misc/vcal/default.nix

38 lines
941 B
Nix
Raw Normal View History

2018-05-16 08:12:50 +00:00
{ stdenv, lib, fetchurl, perl }:
stdenv.mkDerivation rec {
pname = "vcal";
2018-05-30 07:27:10 +00:00
version = "2.8";
2018-05-16 08:12:50 +00:00
src = fetchurl {
url = "https://waynemorrison.com/software/vcal";
2018-05-30 07:27:10 +00:00
sha256 = "0jrm0jzqxb1xjp24hwbzlxsh22gjssay9gj4zszljzdm68r5afvc";
2018-05-16 08:12:50 +00:00
};
nativeBuildInputs = [ perl ]; # for pod2man
2019-06-19 15:45:34 +00:00
dontUnpack = true;
2018-05-16 08:12:50 +00:00
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/{bin,share/man/man1}
substitute ${src} $out/bin/vcal \
--replace /usr/bin/perl ${perl}/bin/perl
2018-05-16 08:50:48 +00:00
chmod 0755 $out/bin/*
2018-05-30 07:27:10 +00:00
pod2man --name=vcal --release=${version} ${src} > $out/share/man/man1/vcal.1
2018-05-16 08:12:50 +00:00
runHook postInstall
'';
# There are no tests
doCheck = false;
meta = with lib; {
description = "Parser for VCalendar and ICalendar files, usable from the command line";
homepage = "https://waynemorrison.com/software/";
2018-05-30 07:27:10 +00:00
license = licenses.asl20;
2018-05-16 08:12:50 +00:00
maintainers = with maintainers; [ peterhoeg ];
};
}