about summary refs log tree commit diff
path: root/pkgs/tools/text/csvquote/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/text/csvquote/default.nix')
-rw-r--r--pkgs/tools/text/csvquote/default.nix47
1 files changed, 0 insertions, 47 deletions
diff --git a/pkgs/tools/text/csvquote/default.nix b/pkgs/tools/text/csvquote/default.nix
deleted file mode 100644
index e4bf9b5a3377..000000000000
--- a/pkgs/tools/text/csvquote/default.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{ 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;
-  };
-}