about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2015-11-12 03:03:43 +0300
committerNikolay Amiantov <ab@fmap.me>2015-11-12 03:42:01 +0300
commit7aeb535eb19f5e7481b8476fa022c37c5e931a01 (patch)
tree12d619e01b6d40802f45c6a48aac91b9f913ea9e /pkgs/tools
parent160d38711e43c47f9e38082df269bec41244f8ee (diff)
downloadnixlib-7aeb535eb19f5e7481b8476fa022c37c5e931a01.tar
nixlib-7aeb535eb19f5e7481b8476fa022c37c5e931a01.tar.gz
nixlib-7aeb535eb19f5e7481b8476fa022c37c5e931a01.tar.bz2
nixlib-7aeb535eb19f5e7481b8476fa022c37c5e931a01.tar.lz
nixlib-7aeb535eb19f5e7481b8476fa022c37c5e931a01.tar.xz
nixlib-7aeb535eb19f5e7481b8476fa022c37c5e931a01.tar.zst
nixlib-7aeb535eb19f5e7481b8476fa022c37c5e931a01.zip
innoextract: 1.4 -> 1.5
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/archivers/innoextract/default.nix31
1 files changed, 21 insertions, 10 deletions
diff --git a/pkgs/tools/archivers/innoextract/default.nix b/pkgs/tools/archivers/innoextract/default.nix
index d8c88b6ee657..6b442e7bf660 100644
--- a/pkgs/tools/archivers/innoextract/default.nix
+++ b/pkgs/tools/archivers/innoextract/default.nix
@@ -1,10 +1,21 @@
-{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
+{stdenv, fetchurl, cmake, python, doxygen, lzma, boost}:
+
+stdenv.mkDerivation rec {
+  name = "innoextract-1.5";
+
+  src = fetchurl {
+    url = "http://constexpr.org/innoextract/files/${name}.tar.gz";
+    sha256 = "1ks8z8glak63xvqlv7dnmlzkjrwsn81lhybmai2mja6g5jclwngj";
+  };
+
+  buildInputs = [ python doxygen lzma boost ];
+  nativeBuildInputs = [ cmake ];
+
+  meta = with stdenv.lib; {
+    description = "A tool to unpack installers created by Inno Setup";
+    homepage = "http://constexpr.org/innoextract/";
+    platforms = platforms.linux;
+    license = licenses.zlib;
+    maintainers = with maintainers; [ abbradar ];
+  };
+}