4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
95 lines
2.2 KiB
Nix
95 lines
2.2 KiB
Nix
{ lib, stdenv
|
|
, cmake
|
|
, fetchFromGitHub
|
|
, wrapQtAppsHook
|
|
, qtmultimedia
|
|
, qttools
|
|
, qtscript
|
|
, qtdeclarative
|
|
, qtbase
|
|
, autogen
|
|
, automake
|
|
, makeWrapper
|
|
, catch2
|
|
, nodejs
|
|
, libpulseaudio
|
|
, openssl
|
|
, rsync
|
|
, typescript
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "imgbrd-grabber";
|
|
|
|
version = "7.3.2";
|
|
src = fetchFromGitHub {
|
|
owner = "Bionus";
|
|
repo = "imgbrd-grabber";
|
|
rev = "v${version}";
|
|
sha256 = "053rwvcr88fcba0447a6r115cgnqsm9rl066z8d5jacqnhdij58k";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
buildInputs = [
|
|
openssl
|
|
makeWrapper
|
|
libpulseaudio
|
|
typescript
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
qtmultimedia
|
|
qtbase
|
|
qtdeclarative
|
|
qttools
|
|
nodejs
|
|
cmake
|
|
wrapQtAppsHook
|
|
];
|
|
|
|
extraOutputsToLink = [ "doc" ];
|
|
|
|
postPatch = ''
|
|
# 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
|
|
|
|
# ensure the script uses the rsync package from nixpkgs
|
|
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
|
|
'';
|
|
|
|
postInstall = ''
|
|
# move the binaries to the share/Grabber folder so
|
|
# 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
|
|
|
|
# add symlinks for the binaries to $out/bin
|
|
ln -s $out/share/Grabber/Grabber $out/bin/Grabber
|
|
ln -s $out/share/Grabber/Grabber-cli $out/bin/Grabber-cli
|
|
'';
|
|
|
|
sourceRoot = "source/src";
|
|
|
|
meta = with lib; {
|
|
description = "Very customizable imageboard/booru downloader with powerful filenaming features";
|
|
license = licenses.asl20;
|
|
homepage = "https://bionus.github.io/imgbrd-grabber/";
|
|
maintainers = [ maintainers.evanjs ];
|
|
};
|
|
}
|