mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Merge pull request #98006 from OPNA2608/package-sc68
sc68: init at unstable-2020-05-18
This commit is contained in:
commit
cdfbfec2da
39
pkgs/applications/audio/sc68/default.nix
Normal file
39
pkgs/applications/audio/sc68/default.nix
Normal file
@ -0,0 +1,39 @@
|
||||
{ stdenv
|
||||
, fetchsvn
|
||||
, pkg-config
|
||||
, which
|
||||
, autoconf
|
||||
, automake
|
||||
, libtool
|
||||
, hexdump
|
||||
, libao
|
||||
, zlib
|
||||
, curl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "sc68";
|
||||
version = "unstable-2020-05-18";
|
||||
|
||||
src = fetchsvn {
|
||||
url = "svn://svn.code.sf.net/p/sc68/code/";
|
||||
rev = "693";
|
||||
sha256 = "0liz5yjwiy41y160ag83zz9s5l8mk72fscxgvjv9g5qf4gwffnfa";
|
||||
};
|
||||
|
||||
preConfigure = "tools/svn-bootstrap.sh";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
nativeBuildInputs = [ pkg-config which autoconf automake libtool hexdump ];
|
||||
|
||||
buildInputs = [ libao zlib curl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Atari ST and Amiga music player";
|
||||
homepage = "http://sc68.atari.org/project.html";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ OPNA2608 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -23172,6 +23172,8 @@ in
|
||||
|
||||
sawfish = callPackage ../applications/window-managers/sawfish { };
|
||||
|
||||
sc68 = callPackage ../applications/audio/sc68 { };
|
||||
|
||||
sidplayfp = callPackage ../applications/audio/sidplayfp { };
|
||||
|
||||
sndpeek = callPackage ../applications/audio/sndpeek { };
|
||||
|
Loading…
Reference in New Issue
Block a user