imgbrd-grabber: build from source
This commit is contained in:
parent
8ad56944fa
commit
99e2f6cb8e
@ -1,50 +1,87 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, cmake
|
, cmake
|
||||||
, fetchzip
|
, fetchFromGitHub
|
||||||
, openssl
|
|
||||||
, autoPatchelfHook
|
|
||||||
, makeWrapper
|
|
||||||
, qtmultimedia
|
|
||||||
, wrapQtAppsHook
|
, wrapQtAppsHook
|
||||||
|
, qtmultimedia
|
||||||
|
, qttools
|
||||||
|
, qtscript
|
||||||
|
, qtdeclarative
|
||||||
|
, qtbase
|
||||||
|
, autogen
|
||||||
|
, automake
|
||||||
|
, makeWrapper
|
||||||
|
, catch2
|
||||||
|
, nodejs
|
||||||
|
, libpulseaudio
|
||||||
|
, openssl
|
||||||
|
, rsync
|
||||||
|
, typescript
|
||||||
}:
|
}:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "imgbrd-grabber";
|
name = "imgbrd-grabber";
|
||||||
|
|
||||||
version = "7.3.2";
|
version = "7.3.2";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Bionus";
|
||||||
|
repo = "imgbrd-grabber";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "053rwvcr88fcba0447a6r115cgnqsm9rl066z8d5jacqnhdij58k";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
stdenv.cc.cc.lib
|
|
||||||
openssl
|
openssl
|
||||||
qtmultimedia
|
makeWrapper
|
||||||
|
libpulseaudio
|
||||||
|
typescript
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
autoPatchelfHook
|
qtmultimedia
|
||||||
makeWrapper
|
qtbase
|
||||||
|
qtdeclarative
|
||||||
|
qttools
|
||||||
|
nodejs
|
||||||
|
cmake
|
||||||
wrapQtAppsHook
|
wrapQtAppsHook
|
||||||
];
|
];
|
||||||
|
|
||||||
installPhase = ''
|
extraOutputsToLink = [ "doc" ];
|
||||||
mkdir -p $out/share/grabber
|
|
||||||
cp -R * $out/share/grabber
|
|
||||||
|
|
||||||
mkdir -p $out/bin
|
postPatch = ''
|
||||||
ln -s $out/share/grabber/Grabber /$out/bin/grabber
|
# the package.sh script provides some install helpers
|
||||||
|
# using this might make it easier to maintain/less likely for the
|
||||||
|
# install phase to fail across version bumps
|
||||||
|
patchShebangs ./scripts/package.sh
|
||||||
|
|
||||||
mkdir -p $out/share/applications
|
# ensure the script uses the rsync package from nixpkgs
|
||||||
mv $out/share/grabber/Grabber.desktop $out/share/applications/
|
substituteInPlace ../scripts/package.sh --replace "rsync" "${rsync}/bin/rsync"
|
||||||
|
|
||||||
|
|
||||||
|
# the npm build step only runs typescript
|
||||||
|
# run this step directly so it doesn't try and fail to download the unnecessary node_modules, etc.
|
||||||
|
substituteInPlace ./sites/CMakeLists.txt --replace "npm install" "npm run build"
|
||||||
|
|
||||||
|
# remove the vendored catch2
|
||||||
|
rm -rf tests/src/vendor/catch
|
||||||
|
|
||||||
|
# link the catch2 sources from nixpkgs
|
||||||
|
ln -sf ${catch2.src} tests/src/vendor/catch
|
||||||
'';
|
'';
|
||||||
|
|
||||||
src = fetchzip {
|
postInstall = ''
|
||||||
url = "https://github.com/Bionus/imgbrd-grabber/releases/download/v${version}/Grabber_v${version}.tar.gz";
|
# move the binaries to the share/Grabber folder so
|
||||||
sha256 = "05isnqhvcp8ycaj8hx6wn0c3la729mb36dzpmlpxfb1p5dj8p49k";
|
# some relative links can be resolved (e.g. settings.ini)
|
||||||
};
|
mv $out/bin/* $out/share/Grabber/
|
||||||
|
|
||||||
|
cd ../..
|
||||||
|
# run the package.sh with $out/share/Grabber as the $APP_DIR
|
||||||
|
sh ./scripts/package.sh $out/share/Grabber
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
# add symlinks for the binaries to $out/bin
|
||||||
homepage = "https://github.com/Bionus/imgbrd-grabber";
|
ln -s $out/share/Grabber/Grabber $out/bin/Grabber
|
||||||
description = "Very customizable imageboard/booru downloader with powerful filenaming features.";
|
ln -s $out/share/Grabber/Grabber-cli $out/bin/Grabber-cli
|
||||||
license = licenses.asl20;
|
'';
|
||||||
platforms = [ "x86_64-linux" ];
|
|
||||||
maintainers = with maintainers; [ evanjs ];
|
sourceRoot = "source/src";
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
@ -21429,7 +21429,9 @@ in
|
|||||||
|
|
||||||
img2pdf = with python3Packages; toPythonApplication img2pdf;
|
img2pdf = with python3Packages; toPythonApplication img2pdf;
|
||||||
|
|
||||||
imgbrd-grabber = qt5.callPackage ../applications/graphics/imgbrd-grabber { };
|
imgbrd-grabber = qt5.callPackage ../applications/graphics/imgbrd-grabber/default.nix {
|
||||||
|
typescript = nodePackages.typescript;
|
||||||
|
};
|
||||||
|
|
||||||
imgcat = callPackage ../applications/graphics/imgcat { };
|
imgcat = callPackage ../applications/graphics/imgcat { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user