about summary refs log tree commit diff
path: root/pkgs/tools/archivers
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/archivers')
-rw-r--r--pkgs/tools/archivers/innoextract/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/tools/archivers/innoextract/default.nix b/pkgs/tools/archivers/innoextract/default.nix
new file mode 100644
index 000000000000..d8c88b6ee657
--- /dev/null
+++ b/pkgs/tools/archivers/innoextract/default.nix
@@ -0,0 +1,10 @@
+{stdenv, fetchurl, cmake, python, doxygen, lzma, boost}:

+stdenv.mkDerivation rec {

+  name = "innoextract-1.4";

+  src = fetchurl {

+    url = "http://constexpr.org/innoextract/files/${name}.tar.gz";

+    sha256 = "1j8wj0ijdnfh0r9qjr7ykp9v3n2yd4qisxln81bl6474w5d4njas";

+  };

+  buildInputs = [ python doxygen lzma boost ];

+  nativeBuildInputs = [ cmake ];

+}
\ No newline at end of file