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.
27 lines
740 B
Nix
27 lines
740 B
Nix
{ stdenv, fetchFromGitHub, cairo, libjpeg, libXft, pkg-config, python2, wafHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ntk";
|
|
version = "1.3.1000";
|
|
src = fetchFromGitHub {
|
|
owner = "original-male";
|
|
repo = "ntk";
|
|
rev = "v${version}";
|
|
sha256 = "0j38mhnfqy6swcrnc5zxcwlqi8b1pgklyghxk6qs1lf4japv2zc0";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config wafHook ];
|
|
buildInputs = [
|
|
cairo libjpeg libXft python2
|
|
];
|
|
|
|
meta = {
|
|
description = "Fork of FLTK 1.3.0 with additional functionality";
|
|
version = version;
|
|
homepage = "http://non.tuxfamily.org/";
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
maintainers = with stdenv.lib.maintainers; [ magnetophon nico202 ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|