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

26 lines
704 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, which, libao, pkg-config }:
2016-10-07 15:58:46 +00:00
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";
};
nativeBuildInputs = [ pkg-config which ];
2018-05-30 06:04:39 +00:00
buildInputs = [ libao ];
enableParallelBuilding = true;
hardeningDisable = [ "format" ];
2016-10-07 15:58:46 +00:00
meta = with lib; {
2016-10-07 15:58:46 +00:00
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 = [ ];
platforms = platforms.unix;
2016-10-07 15:58:46 +00:00
};
}