summary refs log tree commit diff
path: root/pkgs/development/tools/quicktemplate/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/quicktemplate/default.nix')
-rw-r--r--pkgs/development/tools/quicktemplate/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/tools/quicktemplate/default.nix b/pkgs/development/tools/quicktemplate/default.nix
new file mode 100644
index 00000000000..614ffe5e218
--- /dev/null
+++ b/pkgs/development/tools/quicktemplate/default.nix
@@ -0,0 +1,26 @@
+# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
+{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
+
+buildGoPackage rec {
+  name = "quicktemplate-unstable-${version}";
+  version = "2018-04-30";
+  rev = "a91e0946457b6583004fbfc159339b8171423aed";
+
+  goPackagePath = "github.com/valyala/quicktemplate";
+
+  src = fetchgit {
+    inherit rev;
+    url = "https://github.com/valyala/quicktemplate";
+    sha256 = "1z89ang5pkq5qs5b2nwhzyrw0zjlsas539l9kix374fhka49n8yc";
+  };
+
+  goDeps = ./deps.nix;
+
+  meta = with stdenv.lib; {
+    homepage = "https://github.com/valyala/quicktemplate";
+    description = "Fast, powerful, yet easy to use template engine for Go";
+    license = licenses.mit;
+    maintainers = with maintainers; [ chiiruno ];
+    platforms = platforms.all;
+  };
+}