Files
nixpkgs/pkgs/by-name/cs/csvquote/package.nix
quantenzitrone 6b61249106 various: switch to finalAttrs pattern
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00

53 lines
1.0 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
coreutils,
patsh,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "csvquote";
version = "0.1.5";
src = fetchFromGitHub {
owner = "dbro";
repo = "csvquote";
rev = "v${finalAttrs.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 = {
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 = lib.licenses.mit;
maintainers = [ ];
platforms = lib.platforms.all;
};
})