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.
30 lines
764 B
Nix
30 lines
764 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, libusb1, zlib }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "sunxi-tools-20181113";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linux-sunxi";
|
|
repo = "sunxi-tools";
|
|
rev = "6d598a0ed714201380e78130213500be6512942b";
|
|
sha256 = "1yhl6jfl2cws596ymkyhm8h9qkcvp67v8hlh081lsaqv1i8j9yig";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libusb1 zlib ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
buildFlags = [ "tools" "misc" ];
|
|
|
|
installTargets = [ "install-tools" "install-misc" ];
|
|
|
|
meta = with lib; {
|
|
description = "Tools for Allwinner SoC devices";
|
|
homepage = "http://linux-sunxi.org/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ elitak ];
|
|
};
|
|
}
|