ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, doxygen, zlib, Foundation }:
|
|
|
|
let
|
|
generic = version: sha256:
|
|
stdenv.mkDerivation rec {
|
|
pname = "physfs";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "icculus";
|
|
repo = "physfs";
|
|
rev = "release-${version}";
|
|
inherit sha256;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake doxygen ];
|
|
|
|
buildInputs = [ zlib ]
|
|
++ lib.optionals stdenv.isDarwin [ Foundation ];
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
./test_physfs --version
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://icculus.org/physfs/";
|
|
description = "Library to provide abstract access to various archives";
|
|
mainProgram = "test_physfs";
|
|
changelog = "https://github.com/icculus/physfs/releases/tag/release-${version}";
|
|
license = licenses.zlib;
|
|
platforms = platforms.all;
|
|
};
|
|
};
|
|
|
|
in {
|
|
physfs_2 = generic "2.1.1" "sha256-hmS/bfszit3kD6B2BjnuV50XKueq2GcRaqyAKLkvfLc=";
|
|
physfs = generic "3.2.0" "sha256-FhFIshX7G3uHEzvHGlDIrXa7Ux6ThQNzVssaENs+JMw=";
|
|
}
|