57ef6bc4f4
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/kxvhxpaxbcikm9gk2rz3pdmm35iwriqv-lgogdownloader-3.3/bin/lgogdownloader -h` got 0 exit code - ran `/nix/store/kxvhxpaxbcikm9gk2rz3pdmm35iwriqv-lgogdownloader-3.3/bin/lgogdownloader --help` got 0 exit code - ran `/nix/store/kxvhxpaxbcikm9gk2rz3pdmm35iwriqv-lgogdownloader-3.3/bin/lgogdownloader --version` and found version 3.3 - ran `/nix/store/kxvhxpaxbcikm9gk2rz3pdmm35iwriqv-lgogdownloader-3.3/bin/lgogdownloader -h` and found version 3.3 - ran `/nix/store/kxvhxpaxbcikm9gk2rz3pdmm35iwriqv-lgogdownloader-3.3/bin/lgogdownloader --help` and found version 3.3 - found 3.3 with grep in /nix/store/kxvhxpaxbcikm9gk2rz3pdmm35iwriqv-lgogdownloader-3.3 - found 3.3 in filename of file in /nix/store/kxvhxpaxbcikm9gk2rz3pdmm35iwriqv-lgogdownloader-3.3
26 lines
786 B
Nix
26 lines
786 B
Nix
{ stdenv, fetchFromGitHub, cmake, pkgconfig, curl, boost, liboauth, jsoncpp
|
|
, htmlcxx, rhash, tinyxml-2, help2man }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lgogdownloader-${version}";
|
|
version = "3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Sude-";
|
|
repo = "lgogdownloader";
|
|
rev = "v${version}";
|
|
sha256 = "056idwwxjcp2zjqk5h7l3py1h45sax4vbsm93bz9shnfx1s1h3gc";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig help2man ];
|
|
|
|
buildInputs = [ curl boost liboauth jsoncpp htmlcxx rhash tinyxml-2 ];
|
|
|
|
meta = {
|
|
homepage = https://github.com/Sude-/lgogdownloader;
|
|
description = "Unofficial downloader to GOG.com for Linux users. It uses the same API as the official GOGDownloader";
|
|
license = stdenv.lib.licenses.wtfpl;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|