blob: e4bf9b5a3377faf15f9231c24c1d58e29b2db86c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{ lib
, stdenv
, fetchFromGitHub
, 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
];
makeFlags = [
"BINDIR=$(out)/bin"
];
preInstall = ''
mkdir -p "$out/bin"
'';
postInstall = ''
substituteAllInPlace $out/bin/csvheader
patsh $out/bin/csvheader -fs ${builtins.storeDir}
'';
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;
};
}
|