Updating neverball. That required adding physfs.
svn path=/nixpkgs/trunk/; revision=18220
This commit is contained in:
18
pkgs/development/libraries/physfs/default.nix
Normal file
18
pkgs/development/libraries/physfs/default.nix
Normal file
@@ -0,0 +1,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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user