mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 21:13:40 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
49 lines
1.5 KiB
Nix
49 lines
1.5 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, nixosTests
|
|
, alsa-lib
|
|
, SDL2
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "pt2-clone";
|
|
version = "1.70";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "8bitbubsy";
|
|
repo = "pt2-clone";
|
|
rev = "v${finalAttrs.version}";
|
|
sha256 = "sha256-oGdgvyVIqM4YVxyr5DFBJ+YLtH95vqbNv0arD9yskdo=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ SDL2 ] ++ lib.optional stdenv.hostPlatform.isLinux alsa-lib;
|
|
|
|
postInstall = ''
|
|
install -Dm444 "$src/release/other/Freedesktop.org Resources/ProTracker 2 clone.desktop" \
|
|
$out/share/applications/pt2-clone.desktop
|
|
install -Dm444 "$src/release/other/Freedesktop.org Resources/ProTracker 2 clone.png" \
|
|
$out/share/icons/hicolor/512x512/apps/pt2-clone.png
|
|
# gtk-update-icon-cache does not like whitespace. Note that removing this
|
|
# will not make the build fail, but it will make the NixOS test fail.
|
|
substituteInPlace $out/share/applications/pt2-clone.desktop \
|
|
--replace-fail "Icon=ProTracker 2 clone" Icon=pt2-clone
|
|
'';
|
|
|
|
passthru.tests = {
|
|
pt2-clone-opens = nixosTests.pt2-clone;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "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;
|
|
mainProgram = "pt2-clone";
|
|
};
|
|
})
|