summary refs log tree commit diff
path: root/pkgs/tools/misc/ical2org/default.nix
blob: 78f40974ace4bd001f834e2d07b1770ca322fe41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, fetchFromGitHub, buildGoPackage}:

buildGoPackage rec {
  pname = "ical2org";
  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 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;
  };

}