summary refs log tree commit diff
path: root/pkgs/development/libraries/physfs/default.nix
blob: 3eb9a980c8190db99208b6c05c5b1d3701d9d3a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{stdenv, fetchurl, cmake}:

stdenv.mkDerivation rec {
  name = "physfs-2.0.0";

  src = fetchurl {
    url = "${meta.homepage}/downloads/${name}.tar.gz";
    sha256 = "072hqprni4vf4ax6b659s2xxrbz0y6iziarsczawbhi69m4azpyb";
  };

  buildInputs = [ cmake ];

  meta = {
    homepage = http://icculus.org/physfs/;
    description = "Library to provide abstract access to various archives";
    license = "free";
  };
}