about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/audio/uade123/default.nix
blob: 7db3b7ec23768c409faf98426cfd3827f74f740c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, which, libao, pkgconfig }:

let
  version = "2.13";
in stdenv.mkDerivation rec {
  name = "uade123-${version}";
  src = fetchurl {
    url = "http://zakalwe.fi/uade/uade2/uade-${version}.tar.bz2";
    sha256 = "04nn5li7xy4g5ysyjjngmv5d3ibxppkbb86m10vrvadzxdd4w69v";
  };
  nativeBuildInputs = [ pkgconfig which ];
  buildInputs = [ libao ];

  enableParallelBuilding = true;
  hardeningDisable = [ "format" ];

  meta = with stdenv.lib; {
    description = "Plays old Amiga tunes through UAE emulation and cloned m68k-assembler Eagleplayer API";
    homepage = http://zakalwe.fi/uade/;
    license = licenses.gpl2;
    maintainers = [ stdenv.lib.maintainers.gnidorah ];
    platforms = stdenv.lib.platforms.unix;
  };
}