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