mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-28 15:54:32 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
chromium,
|
|
python3,
|
|
}:
|
|
buildNpmPackage {
|
|
pname = "single-file-cli";
|
|
version = "1.1.49";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gildas-lormeau";
|
|
repo = "single-file-cli";
|
|
rev = "af0f6f119edd8bf82bce3860fa55cfad869ac874";
|
|
hash = "sha256-5pozqrIIanoLF4eugLxPRsUaoUYJurliovFFBYO/mC4=";
|
|
};
|
|
npmDepsHash = "sha256-wiBpWw9nb/pWVGIc4Vl/IxxR5ic0LzLMMr3WxRNvYdM=";
|
|
|
|
nativeCheckInputs = [chromium];
|
|
doCheck = stdenv.hostPlatform.isLinux;
|
|
|
|
postBuild = ''
|
|
patchShebangs ./single-file
|
|
'';
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
${python3}/bin/python -m http.server --bind 127.0.0.1 &
|
|
pid=$!
|
|
|
|
./single-file \
|
|
--browser-headless \
|
|
--browser-executable-path chromium-browser\
|
|
http://127.0.0.1:8000
|
|
|
|
grep -F 'Page saved with SingleFile' 'Directory listing for'*.html
|
|
|
|
kill $pid
|
|
wait
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = {
|
|
description = "CLI tool for saving a faithful copy of a complete web page in a single HTML file";
|
|
homepage = "https://github.com/gildas-lormeau/single-file-cli";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [n8henrie];
|
|
mainProgram = "single-file";
|
|
};
|
|
}
|