ft2-clone: init at 1.09
This commit is contained in:
parent
510419ff5d
commit
f9e13566cc
30
pkgs/applications/audio/ft2-clone/default.nix
Normal file
30
pkgs/applications/audio/ft2-clone/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -19148,6 +19148,8 @@ in
|
|||||||
|
|
||||||
fsv = callPackage ../applications/misc/fsv { };
|
fsv = callPackage ../applications/misc/fsv { };
|
||||||
|
|
||||||
|
ft2-clone = callPackage ../applications/audio/ft2-clone { };
|
||||||
|
|
||||||
fvwm = callPackage ../applications/window-managers/fvwm { };
|
fvwm = callPackage ../applications/window-managers/fvwm { };
|
||||||
|
|
||||||
ganttproject-bin = callPackage ../applications/misc/ganttproject-bin { };
|
ganttproject-bin = callPackage ../applications/misc/ganttproject-bin { };
|
||||||
|
Loading…
Reference in New Issue
Block a user