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.
46 lines
1.6 KiB
Nix
46 lines
1.6 KiB
Nix
{ stdenv, fetchurl, cmake, coreutils, dbus, freetype, glib, gnused
|
|
, libpthreadstubs, pango, pkg-config, libpulseaudio, which }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "squeak";
|
|
version = "4.10.2.2614";
|
|
|
|
src = fetchurl {
|
|
sha256 = "0bpwbnpy2sb4gylchfx50sha70z36bwgdxraym4vrr93l8pd3dix";
|
|
url = "http://squeakvm.org/unix/release/Squeak-${version}-src.tar.gz";
|
|
};
|
|
|
|
buildInputs = [ coreutils dbus freetype glib gnused libpthreadstubs
|
|
pango libpulseaudio which ];
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
postPatch = ''
|
|
for i in squeak.in squeak.sh.in; do
|
|
substituteInPlace unix/cmake/$i --replace "PATH=" \
|
|
"PATH=${stdenv.lib.makeBinPath [ coreutils gnused which ]} #"
|
|
done
|
|
'';
|
|
|
|
configurePhase = ''
|
|
unix/cmake/configure --prefix=$out --enable-mpg-{mmx,pthreads}
|
|
'';
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Smalltalk programming language and environment";
|
|
longDescription = ''
|
|
Squeak is a full-featured implementation of the Smalltalk programming
|
|
language and environment based on (and largely compatible with) the
|
|
original Smalltalk-80 system. Squeak has very powerful 2- and 3-D
|
|
graphics, sound, video, MIDI, animation and other multimedia
|
|
capabilities. It also includes a customisable framework for creating
|
|
dynamic HTTP servers and interactively extensible Web sites.
|
|
'';
|
|
homepage = "http://squeakvm.org/";
|
|
downloadPage = "http://squeakvm.org/unix/index.html";
|
|
license = with licenses; [ asl20 mit ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|