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.
26 lines
733 B
Nix
26 lines
733 B
Nix
{ lib, stdenv, fetchurl, which, libao, pkg-config }:
|
|
|
|
let
|
|
version = "2.13";
|
|
in stdenv.mkDerivation {
|
|
pname = "uade123";
|
|
inherit version;
|
|
src = fetchurl {
|
|
url = "http://zakalwe.fi/uade/uade2/uade-${version}.tar.bz2";
|
|
sha256 = "04nn5li7xy4g5ysyjjngmv5d3ibxppkbb86m10vrvadzxdd4w69v";
|
|
};
|
|
nativeBuildInputs = [ pkg-config which ];
|
|
buildInputs = [ libao ];
|
|
|
|
enableParallelBuilding = true;
|
|
hardeningDisable = [ "format" ];
|
|
|
|
meta = with lib; {
|
|
description = "Plays old Amiga tunes through UAE emulation and cloned m68k-assembler Eagleplayer API";
|
|
homepage = "http://zakalwe.fi/uade/";
|
|
license = licenses.gpl2;
|
|
maintainers = [ lib.maintainers.gnidorah ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|