lgogdownloader: 2.26 -> 2.28

This commit is contained in:
Nikolay Amiantov 2016-07-12 00:55:57 +03:00
parent 36725623f9
commit ec73d072ae

View File

@ -1,19 +1,20 @@
{ stdenv, fetchFromGitHub, curl, boost, jsoncpp, liboauth, rhash, tinyxml, htmlcxx, help2man }:
{ stdenv, fetchFromGitHub, cmake, pkgconfig, curl, boost, liboauth, jsoncpp
, htmlcxx, rhash, tinyxml, help2man }:
stdenv.mkDerivation rec {
name = "lgogdownloader-${version}";
version = "2.26";
version = "2.28";
src = fetchFromGitHub {
owner = "Sude-";
repo = "lgogdownloader";
rev = "v${version}";
sha256 = "0277g70nvq7bh42gnry7lz7wqhw8wl2hq6sfxwhn8x4ybkalj2gx";
sha256 = "1xn6pfvxz496sj5jiqyzqj6vn6vrzyks9f6xha8g4vy6hkw717ag";
};
buildInputs = [ curl boost jsoncpp liboauth rhash tinyxml htmlcxx help2man ];
nativeBuildInputs = [ cmake pkgconfig help2man ];
makeFlags = [ "release" "PREFIX=$(out)" ];
buildInputs = [ curl boost liboauth jsoncpp htmlcxx rhash tinyxml ];
meta = {
homepage = https://github.com/Sude-/lgogdownloader;