summary refs log tree commit diff
path: root/pkgs/development/libraries/stb/default.nix
blob: c2353c7b7061204295e40ffaa6c46b630c197c5c (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
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation {
  pname = "stb";
  version = "20180211";

  src = fetchFromGitHub {
    owner = "nothings";
    repo = "stb";
    rev = "e6afb9cbae4064da8c3e69af3ff5c4629579c1d2";
    sha256 = "079nsn9bnb8c0vfq26g5l53q6gzx19a5x9q2nb55mpcljxsgxnmf";
  };

  dontBuild = true;

  installPhase = ''
    mkdir -p $out/include/stb
    cp *.h $out/include/stb/
  '';

  meta = with stdenv.lib; {
    description = "Single-file public domain libraries for C/C++";
    homepage = https://github.com/nothings/stb;
    license = licenses.publicDomain;
    platforms = platforms.all;
    maintainers = with maintainers; [ jfrankenau ];
  };
}