mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
msitools: init at 0.94
I'm leaving authorship to the one who created most of the expression.
This commit is contained in:
parent
b0d54e00f9
commit
a6c09bf4b4
21
pkgs/development/tools/misc/msitools/default.nix
Normal file
21
pkgs/development/tools/misc/msitools/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{stdenv, fetchurl, intltool, glib, pkgconfig, libgsf, libuuid, gcab, bzip2}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.94";
|
||||
name = "msitools-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.gnome.org/pub/GNOME/sources/msitools/0.94/${name}.tar.xz";
|
||||
sha256 = "0bndnm3mgcqkw5dhwy5l1zri4lqvjbhbn5rxz651fkxlkhab8bhm";
|
||||
};
|
||||
|
||||
buildInputs = [intltool glib pkgconfig libgsf libuuid gcab bzip2];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Set of programs to inspect and build Windows Installer (.MSI) files";
|
||||
homepage = https://wiki.gnome.org/msitools;
|
||||
license = [licenses.gpl2 licenses.lgpl21];
|
||||
maintainer = [maintainers.vcunat];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -5988,6 +5988,8 @@ let
|
||||
|
||||
mk = callPackage ../development/tools/build-managers/mk { };
|
||||
|
||||
msitools = callPackage ../development/tools/misc/msitools { };
|
||||
|
||||
multi-ghc-travis = callPackage ../development/tools/haskell/multi-ghc-travis { };
|
||||
|
||||
neoload = callPackage ../development/tools/neoload {
|
||||
|
Loading…
Reference in New Issue
Block a user