forked from mirrors/nixpkgs
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
28 lines
817 B
Nix
28 lines
817 B
Nix
{ stdenv, fetchurl, intltool, glib, pkg-config, libgsf, libuuid, gcab, bzip2, gnome3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "msitools";
|
|
version = "0.98";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "19wb3n3nwkpc6bjr0q3f1znaxsfaqgjbdxxnbx8ic8bb5b49hwac";
|
|
};
|
|
|
|
nativeBuildInputs = [ intltool pkg-config ];
|
|
buildInputs = [ glib libgsf libuuid gcab bzip2 ];
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
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 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|