3
0
Fork 0
forked from mirrors/nixpkgs

ft2-clone: init at 1.09

This commit is contained in:
Francesco Gazzetta 2020-02-20 09:37:33 +01:00 committed by Frederik Rietdijk
parent 510419ff5d
commit f9e13566cc
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ stdenv
, fetchFromGitHub
, cmake
, alsaLib
, SDL2
}:
stdenv.mkDerivation rec {
pname = "ft2-clone";
version = "1.09";
src = fetchFromGitHub {
owner = "8bitbubsy";
repo = "ft2-clone";
rev = "v${version}";
sha256 = "18my7fywaf66rq8phsly8lglxzpglran8rj27fvwgpni8098ic7d";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ SDL2 ] ++ stdenv.lib.optional stdenv.isLinux alsaLib;
meta = with stdenv.lib; {
description = "A highly accurate clone of the classic Fasttracker II software for MS-DOS";
homepage = "https://16-bits.org/ft2.php";
license = licenses.bsd3;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.all;
};
}

View file

@ -19148,6 +19148,8 @@ in
fsv = callPackage ../applications/misc/fsv { };
ft2-clone = callPackage ../applications/audio/ft2-clone { };
fvwm = callPackage ../applications/window-managers/fvwm { };
ganttproject-bin = callPackage ../applications/misc/ganttproject-bin { };