mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
pt2-clone: init at 1.06
This commit is contained in:
parent
2643e4163b
commit
510419ff5d
30
pkgs/applications/audio/pt2-clone/default.nix
Normal file
30
pkgs/applications/audio/pt2-clone/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, alsaLib
|
||||
, SDL2
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pt2-clone";
|
||||
version = "1.06";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "8bitbubsy";
|
||||
repo = "pt2-clone";
|
||||
rev = "v${version}";
|
||||
sha256 = "00zifwiprd3i60z4pf4471jxbc33vh9p30ib0lnzwpgjz5pnxqnr";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ SDL2 ] ++ stdenv.lib.optional stdenv.isLinux alsaLib;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A highly accurate clone of the classic ProTracker 2.3D software for Amiga";
|
||||
homepage = "https://16-bits.org/pt2.php";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ fgaz ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -21184,6 +21184,8 @@ in
|
||||
|
||||
pstree = callPackage ../applications/misc/pstree { };
|
||||
|
||||
pt2-clone = callPackage ../applications/audio/pt2-clone { };
|
||||
|
||||
ptask = callPackage ../applications/misc/ptask { };
|
||||
|
||||
pulseaudio-ctl = callPackage ../applications/audio/pulseaudio-ctl { };
|
||||
|
Loading…
Reference in New Issue
Block a user