nixpkgs/pkgs/applications/audio/uade123/default.nix

26 lines
747 B
Nix
Raw Normal View History

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