Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1.0 KiB
Nix
53 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
coreutils,
|
|
patsh,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "csvquote";
|
|
version = "0.1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dbro";
|
|
repo = "csvquote";
|
|
rev = "v${version}";
|
|
hash = "sha256-847JAoDEfA9K4LB8z9cqSw+GTImqmITBylB/4odLDb0=";
|
|
};
|
|
|
|
patches = [
|
|
# patch csvheader to use csvquote from the derivation
|
|
./csvquote-path.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
patsh
|
|
];
|
|
|
|
# needed for cross
|
|
buildInputs = [ coreutils ];
|
|
|
|
makeFlags = [
|
|
"BINDIR=$(out)/bin"
|
|
];
|
|
|
|
preInstall = ''
|
|
mkdir -p "$out/bin"
|
|
'';
|
|
|
|
postInstall = ''
|
|
substituteAllInPlace $out/bin/csvheader
|
|
patsh $out/bin/csvheader -fs ${builtins.storeDir} --path "$HOST_PATH"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Enables common unix utilities like cut, awk, wc, head to work correctly with csv data containing delimiters and newlines";
|
|
homepage = "https://github.com/dbro/csvquote";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|