mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Added innoextract package.
Allows to extract inno installer packages.
This commit is contained in:
parent
4463bad2dd
commit
c45bc8c2b4
10
pkgs/tools/archivers/innoextract/default.nix
Normal file
10
pkgs/tools/archivers/innoextract/default.nix
Normal file
@ -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 ];
|
||||
}
|
@ -1722,6 +1722,8 @@ let
|
||||
|
||||
inetutils = callPackage ../tools/networking/inetutils { };
|
||||
|
||||
innoextract = callPackage ../tools/archivers/innoextract {};
|
||||
|
||||
ioping = callPackage ../tools/system/ioping {};
|
||||
|
||||
iodine = callPackage ../tools/networking/iodine { };
|
||||
|
Loading…
Reference in New Issue
Block a user