1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

bgs: update from 0.7.1 to 0.8

This commit is contained in:
Pascal Wittmann 2015-09-05 11:06:14 +02:00
parent 9f1a3a4b0f
commit b493688c69

View file

@ -1,15 +1,17 @@
{stdenv, fetchurl, libX11, libXinerama, imlib2}:
{stdenv, fetchurl, pkgconfig, libX11, libXinerama, imlib2}:
stdenv.mkDerivation rec {
name = "bgs-${version}";
version = "0.7.1";
version = "0.8";
src = fetchurl {
url = "https://github.com/Gottox/bgs/archive/v${version}.tar.gz";
sha256 = "1kgm139daz4xrymx11whbmwzsnps9yn4g34a17s34ihi0raf70w8";
sha256 = "1rw9ingkkpvvr2dixx126ziim67a54r8k49918h1mbph0fjj08n5";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libX11 libXinerama imlib2 ];
preConfigure = ''sed -i "s@PREFIX = /usr/local@PREFIX = $out@g" config.mk'';