nixpkgs/pkgs/by-name/sf/sfxr/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

67 lines
1.5 KiB
Nix

{ lib, stdenv
, fetchurl
, fetchpatch
, pkg-config
, desktop-file-utils
, SDL
, gtk3
, gsettings-desktop-schemas
, wrapGAppsHook3
}:
stdenv.mkDerivation (finalAttrs: {
pname = "sfxr";
version = "1.2.1";
src = fetchurl {
url = "http://www.drpetter.se/files/sfxr-sdl-${finalAttrs.version}.tar.gz";
sha256 = "0dfqgid6wzzyyhc0ha94prxax59wx79hqr25r6if6by9cj4vx4ya";
};
patches = [
# Fix segfault
(fetchpatch {
url = "https://src.fedoraproject.org/rpms/sfxr/raw/223e58e68857c2018ced635e8209bb44f3616bf8/f/sfxr-sdl-gcc8x.patch";
hash = "sha256-etn4AutkNrhEDH9Ep8MhH9JSJEd7V/JXwjQua5uhAmg=";
})
];
postPatch = ''
substituteInPlace Makefile --replace "usr/" ""
substituteInPlace sdlkit.h --replace \
"/usr/share/sfxr/sfxr.bmp" \
"$out/share/sfxr/sfxr.bmp"
substituteInPlace main.cpp \
--replace \
"/usr/share/sfxr/font.tga" \
"$out/share/sfxr/font.tga" \
--replace \
"/usr/share/sfxr/ld48.tga" \
"$out/share/sfxr/ld48.tga"
'';
nativeBuildInputs = [
pkg-config
desktop-file-utils
];
buildInputs = [
SDL
gtk3
gsettings-desktop-schemas
wrapGAppsHook3
];
makeFlags = [ "DESTDIR=$(out)" ];
meta = with lib; {
broken = stdenv.hostPlatform.isDarwin;
homepage = "http://www.drpetter.se/project_sfxr.html";
description = "Videogame sound effect generator";
mainProgram = "sfxr";
license = licenses.mit;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.unix;
};
})