about summary refs log tree commit diff
path: root/pkgs/tools/misc/csv2latex
diff options
context:
space:
mode:
authorSpencer Baugh <sbaugh@catern.com>2020-04-03 17:54:07 -0400
committerSpencer Baugh <sbaugh@catern.com>2020-04-04 00:09:28 -0400
commit797d90e25977a1ab77e68d0ba321a18c542e0a05 (patch)
tree1fe20a8a893324c9a8c0ee34b8c2af9db7777518 /pkgs/tools/misc/csv2latex
parent7f20da7850a878747f55043a02e8dc7ca36a3b14 (diff)
csv2latex: init at 0.22
Diffstat (limited to 'pkgs/tools/misc/csv2latex')
-rw-r--r--pkgs/tools/misc/csv2latex/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/tools/misc/csv2latex/default.nix b/pkgs/tools/misc/csv2latex/default.nix
new file mode 100644
index 0000000000000..7cad80456b34c
--- /dev/null
+++ b/pkgs/tools/misc/csv2latex/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  pname = "csv2latex";
+  version = "0.22";
+
+  src = fetchurl {
+    url = "http://brouits.free.fr/csv2latex/csv2latex-${version}.tar.gz";
+    sha256 = "09qih2zx6cvlii1n5phiinvm9xw1l8f4i60b5hg56pymzjhn97vy";
+  };
+
+  installPhase = ''
+  mkdir -p $out/bin
+  make PREFIX=$out install
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Command-line CSV to LaTeX file converter";
+    homepage = http://brouits.free.fr/csv2latex/;
+    license = licenses.gpl2;
+    maintainers = [ maintainers.catern ];
+  };
+}