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
906 B
Nix
31 lines
906 B
Nix
{ stdenv, lib, fetchgit, flex, bison, pkg-config, which
|
|
, pythonSupport ? false, python, swig
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dtc";
|
|
version = "1.6.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.kernel.org/pub/scm/utils/dtc/dtc.git";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "0li992wwd7kgy71bikanqky49y4hq3p3vx35p2hvyxy1k0wfy7i8";
|
|
};
|
|
|
|
nativeBuildInputs = [ flex bison pkg-config which ] ++ lib.optionals pythonSupport [ python swig ];
|
|
|
|
postPatch = ''
|
|
patchShebangs pylibfdt/
|
|
'';
|
|
|
|
makeFlags = [ "PYTHON=python" ];
|
|
installFlags = [ "INSTALL=install" "PREFIX=$(out)" "SETUP_PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Device Tree Compiler";
|
|
homepage = "https://git.kernel.org/cgit/utils/dtc/dtc.git";
|
|
license = licenses.gpl2; # dtc itself is GPLv2, libfdt is dual GPL/BSD
|
|
maintainers = [ maintainers.dezgeg ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|