2021-01-25 00:26:54 -08:00
|
|
|
{ lib, fetchFromGitHub, buildGoPackage}:
|
2018-06-17 13:51:22 -07:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "ical2org";
|
2018-07-19 12:56:29 -07:00
|
|
|
version="1.1.5";
|
2018-06-17 13:51:22 -07:00
|
|
|
|
|
|
|
goPackagePath = "github.com/rjhorniii/ical2org";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rjhorniii";
|
|
|
|
repo = "ical2org";
|
2018-07-19 12:56:29 -07:00
|
|
|
rev = "v.${version}";
|
2018-06-17 13:51:22 -07:00
|
|
|
sha256 = "0hdx2j2innjh0z4kxcfzwdl2d54nv0g9ai9fyacfiagjhnzgf7cm";
|
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-10-10 22:55:05 -07:00
|
|
|
description = "Convert an iCal file to org agenda format, optionally deduplicating entries";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/rjhorniii/ical2org";
|
2018-06-17 13:51:22 -07:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ swflint ];
|
|
|
|
platforms = platforms.unix;
|
2018-06-17 14:46:29 -07:00
|
|
|
};
|
2020-07-30 21:07:43 -07:00
|
|
|
|
2018-06-17 13:51:22 -07:00
|
|
|
}
|