nixpkgs/pkgs/by-name/st/stormlib/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

62 lines
1.3 KiB
Nix

{
lib,
bzip2,
cmake,
darwin,
fetchFromGitHub,
libtomcrypt,
stdenv,
zlib,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "stormlib";
version = "9.23";
src = fetchFromGitHub {
owner = "ladislav-zezula";
repo = "StormLib";
rev = "v${finalAttrs.version}";
hash = "sha256-8JDMqZ5BWslH4+Mfo5lnWTmD2QDaColwBOLzcuGZciY=";
};
nativeBuildInputs = [
cmake
];
buildInputs = [
bzip2
libtomcrypt
zlib
]
++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Carbon
];
cmakeFlags = [
(lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic))
(lib.cmakeBool "WITH_LIBTOMCRYPT" true)
];
strictDeps = true;
env.NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.cc.isClang [
"-Wno-implicit-function-declaration"
"-Wno-int-conversion"
]);
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace "FRAMEWORK DESTINATION /Library/Frameworks" "FRAMEWORK DESTINATION Library/Frameworks"
'';
meta = {
homepage = "https://github.com/ladislav-zezula/StormLib";
description = "Open-source project that can work with Blizzard MPQ archives";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ aanderse karolchmist ];
platforms = lib.platforms.all;
broken = stdenv.isDarwin; # installation directory mismatch
};
})