]> git.immae.eu Git - perso/Immae/Config/Nix.git/blobdiff - pkgs/ical2html/default.nix
Bump backports
[perso/Immae/Config/Nix.git] / pkgs / ical2html / default.nix
diff --git a/pkgs/ical2html/default.nix b/pkgs/ical2html/default.nix
new file mode 100644 (file)
index 0000000..5ce6433
--- /dev/null
@@ -0,0 +1,11 @@
+{ pkgs ? import <nixpkgs> {} }:
+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 ];
+
+}