blob: 3040c9eda253254e277e477364f34a54086a3b2c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{
stdenvNoCC,
fetchFromGitHub,
lib
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "physac";
version = "2.5-unstable-2023-12-11";
src = fetchFromGitHub {
owner = "victorfisac";
repo = "Physac";
rev = "29d9fc06860b54571a02402fff6fa8572d19bd12";
hash = "sha256-PTlV1tT0axQbmGmJ7JD1n6wmbIxUdu7xho78EO0HNNk=";
};
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/{include,lib/pkgconfig}
install -Dm644 $src/src/physac.h $out/include/physac.h
cat <<EOF > $out/lib/pkgconfig/physac.pc
prefix=$out
includedir=$out/include
Name: physac
Description: ${finalAttrs.meta.description}
URL: ${finalAttrs.meta.homepage}
Version: ${finalAttrs.version}
Cflags: -I"{includedir}"
EOF
runHook postInstall
'';
meta = {
description = "2D physics header-only library for raylib";
homepage = "https://github.com/victorfisac/Physac";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sigmanificient ];
platforms = lib.platforms.unix;
};
})
|