nixpkgs/pkgs/tools/misc/ical2org/default.nix
2018-07-19 21:56:29 +02:00

28 lines
697 B
Nix

{ stdenv, fetchFromGitHub, buildGoPackage}:
buildGoPackage rec {
name = "ical2org-${version}";
version="1.1.5";
goPackagePath = "github.com/rjhorniii/ical2org";
src = fetchFromGitHub {
owner = "rjhorniii";
repo = "ical2org";
rev = "v.${version}";
sha256 = "0hdx2j2innjh0z4kxcfzwdl2d54nv0g9ai9fyacfiagjhnzgf7cm";
fetchSubmodules = true;
};
goDeps = ./deps.nix;
meta = with stdenv.lib; {
description = "Convert an iCal file to org agenda format, optionally deduplicating entries.";
homepage = https://github.com/rjhorniii/ical2org;
license = licenses.gpl3;
maintainers = with maintainers; [ swflint ];
platforms = platforms.unix;
};
}