nixpkgs/pkgs/applications/audio/pt2-clone/default.nix

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

45 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-02-20 08:16:24 +00:00
, fetchFromGitHub
, cmake
2020-07-29 17:00:33 +00:00
, nixosTests
, alsa-lib
2020-02-20 08:16:24 +00:00
, SDL2
}:
2024-02-19 14:38:20 +00:00
stdenv.mkDerivation (finalAttrs: {
2020-02-20 08:16:24 +00:00
pname = "pt2-clone";
2024-04-27 11:09:47 +00:00
version = "1.69.2";
2020-02-20 08:16:24 +00:00
src = fetchFromGitHub {
owner = "8bitbubsy";
repo = "pt2-clone";
2024-02-19 14:38:20 +00:00
rev = "v${finalAttrs.version}";
2024-04-27 11:09:47 +00:00
sha256 = "sha256-Vy8b9rbYM/bK/mCUW4V4rPeAmoBN/wn7iVBANSboL2Q=";
2020-02-20 08:16:24 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ SDL2 ] ++ lib.optional stdenv.isLinux alsa-lib;
2020-02-20 08:16:24 +00:00
2023-12-01 21:17:20 +00:00
postInstall = ''
install -Dm444 "$src/release/other/Freedesktop.org Resources/ProTracker 2 clone.desktop" \
-t $out/share/applications
install -Dm444 "$src/release/other/Freedesktop.org Resources/ProTracker 2 clone.png" \
-t $out/share/icons/hicolor/512x512/apps
'';
2020-07-29 17:00:33 +00:00
passthru.tests = {
pt2-clone-opens = nixosTests.pt2-clone;
};
meta = with lib; {
2020-02-20 08:16:24 +00:00
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 ];
# From HOW-TO-COMPILE.txt:
# > This code is NOT big-endian compatible
platforms = platforms.littleEndian;
2024-02-11 02:19:15 +00:00
mainProgram = "pt2-clone";
2020-02-20 08:16:24 +00:00
};
2024-02-19 14:38:20 +00:00
})