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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
835 B
Nix
Raw Normal View History

{ lib, stdenv
2020-11-29 21:56:22 +00:00
, fetchsvn
, pkg-config
, which
, autoconf
, automake
, libtool
, hexdump
, libao
, zlib
, curl
}:
stdenv.mkDerivation rec {
pname = "sc68";
version = "unstable-2022-11-24";
2020-11-29 21:56:22 +00:00
src = fetchsvn {
url = "svn://svn.code.sf.net/p/sc68/code/";
rev = "695";
sha256 = "sha256-RO3Yhjalu49BUM0fYOZtI2l6KbuUuw03whRxlKneabo=";
2020-11-29 21:56:22 +00:00
};
preConfigure = "tools/svn-bootstrap.sh";
enableParallelBuilding = true;
nativeBuildInputs = [
autoconf
automake
hexdump
libtool
pkg-config
which
];
2020-11-29 21:56:22 +00:00
buildInputs = [
curl
libao
zlib
];
2020-11-29 21:56:22 +00:00
meta = with lib; {
2020-11-29 21:56:22 +00:00
description = "Atari ST and Amiga music player";
homepage = "http://sc68.atari.org/project.html";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ OPNA2608 ];
platforms = platforms.all;
};
}