2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, which, libao, pkg-config }:
|
2016-10-07 16:58:46 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
version = "2.13";
|
2019-08-13 22:52:01 +01:00
|
|
|
in stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "uade123";
|
|
|
|
inherit version;
|
2016-10-07 16:58:46 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://zakalwe.fi/uade/uade2/uade-${version}.tar.bz2";
|
|
|
|
sha256 = "04nn5li7xy4g5ysyjjngmv5d3ibxppkbb86m10vrvadzxdd4w69v";
|
|
|
|
};
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config which ];
|
2018-05-30 07:04:39 +01:00
|
|
|
buildInputs = [ libao ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
hardeningDisable = [ "format" ];
|
2016-10-07 16:58:46 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-10-07 16:58:46 +01:00
|
|
|
description = "Plays old Amiga tunes through UAE emulation and cloned m68k-assembler Eagleplayer API";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://zakalwe.fi/uade/";
|
2016-10-07 16:58:46 +01:00
|
|
|
license = licenses.gpl2;
|
2021-01-15 13:21:58 +00:00
|
|
|
maintainers = [ lib.maintainers.gnidorah ];
|
|
|
|
platforms = lib.platforms.unix;
|
2016-10-07 16:58:46 +01:00
|
|
|
};
|
|
|
|
}
|