summary refs log blame commit diff
path: root/pkgs/development/libraries/stb/default.nix
blob: a3020e14d3e1430fee2f0ce3f0604f450a393061 (plain) (tree)
1
2
3
4
                                 
 
                     
                















                                                                    
                    
                                                                  
                                                 




                                                   
{ lib, 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 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 ];
  };
}