X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=flakes%2Fmypackages%2Fpkgs%2Fical2html%2Fdefault.nix;h=5ce6433a58180518ce2a822b25905723f76cbbe3;hb=776aa3603903616702b8bc1d9e955d3a6da9ee1e;hpb=c7b16397101fd534c41ede5ae7c55e7e120c06f7;p=perso%2FImmae%2FConfig%2FNix.git diff --git a/flakes/mypackages/pkgs/ical2html/default.nix b/flakes/mypackages/pkgs/ical2html/default.nix new file mode 100644 index 0000000..5ce6433 --- /dev/null +++ b/flakes/mypackages/pkgs/ical2html/default.nix @@ -0,0 +1,11 @@ +{ pkgs ? import {} }: +pkgs.stdenv.mkDerivation rec { + pname = "ical2html"; + version = "3.0"; + src= pkgs.fetchurl { + url = "https://www.w3.org/Tools/Ical2html/${pname}-${version}.tar.gz"; + sha256 = "sha256-1QhE04cmohhPgZ3I8jz28Z7ZnSJkH2aPnRse5/pReEA="; + }; + buildInputs = [ pkgs.libical ]; + +}