forked from mirrors/nixpkgs
berry: 0.1.5 -> 0.1.7
This commit is contained in:
parent
7e25b71132
commit
bd36a2da98
|
@ -1,18 +1,30 @@
|
|||
{ stdenv, fetchFromGitHub
|
||||
, libX11, libXft, libXinerama, fontconfig, freetype }:
|
||||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, libX11
|
||||
, libXft
|
||||
, libXinerama
|
||||
, fontconfig
|
||||
, freetype
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "berry";
|
||||
version = "0.1.5";
|
||||
version = "0.1.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "JLErvin";
|
||||
repo = "berry";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1wxbjzpwqb9x7vd7kb095fiqj271rki980dnwcxjxpqlmmrmjzyl";
|
||||
sha256 = "sha256-2kFVOE5l1KQvDb5KDL7y0p4M7awJLrxJF871cyc0YZ8=";
|
||||
};
|
||||
|
||||
buildInputs = [ libX11 libXft libXinerama fontconfig freetype ];
|
||||
buildInputs =[
|
||||
libX11
|
||||
libXft
|
||||
libXinerama
|
||||
fontconfig
|
||||
freetype
|
||||
];
|
||||
|
||||
preBuild = ''
|
||||
makeFlagsArray+=( PREFIX="${placeholder "out"}"
|
||||
|
|
Loading…
Reference in a new issue