lol
at 22.05-pre 27 lines 676 B view raw
1{ lib, fetchFromGitHub, buildGoPackage}: 2 3buildGoPackage rec { 4 pname = "ical2org"; 5 version="1.1.5"; 6 7 goPackagePath = "github.com/rjhorniii/ical2org"; 8 9 src = fetchFromGitHub { 10 owner = "rjhorniii"; 11 repo = "ical2org"; 12 rev = "v.${version}"; 13 sha256 = "0hdx2j2innjh0z4kxcfzwdl2d54nv0g9ai9fyacfiagjhnzgf7cm"; 14 fetchSubmodules = true; 15 }; 16 17 goDeps = ./deps.nix; 18 19 meta = with lib; { 20 description = "Convert an iCal file to org agenda format, optionally deduplicating entries"; 21 homepage = "https://github.com/rjhorniii/ical2org"; 22 license = licenses.gpl3; 23 maintainers = with maintainers; [ swflint ]; 24 platforms = platforms.unix; 25 }; 26 27}