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.
31 lines
689 B
Nix
31 lines
689 B
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, libgsf
|
|
, pkg-config
|
|
, openssl
|
|
, curl
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "osslsigncode";
|
|
version = "2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mtrojnar";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0iwxdzqan2bswz62pmwjcyh01vs6ifpdcannw3s192gqzac1lgg3";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook libgsf pkg-config openssl curl ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/mtrojnar/osslsigncode";
|
|
description = "OpenSSL based Authenticode signing for PE/MSI/Java CAB files";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ mmahut prusnak ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|