summary refs log tree commit diff
path: root/pkgs/tools/misc/cv
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2014-07-20 15:44:47 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2014-07-20 15:45:19 +0200
commit52cf78ef229adc70c9e93abb378cdf4b09eecb8f (patch)
tree7b7438ab9ae77047f344fd6cd7f7f940b375afdf /pkgs/tools/misc/cv
parentc7add6c2705550ce840dc7751ab15427f5ad9974 (diff)
downloadnixlib-52cf78ef229adc70c9e93abb378cdf4b09eecb8f.tar
nixlib-52cf78ef229adc70c9e93abb378cdf4b09eecb8f.tar.gz
nixlib-52cf78ef229adc70c9e93abb378cdf4b09eecb8f.tar.bz2
nixlib-52cf78ef229adc70c9e93abb378cdf4b09eecb8f.tar.lz
nixlib-52cf78ef229adc70c9e93abb378cdf4b09eecb8f.tar.xz
nixlib-52cf78ef229adc70c9e93abb378cdf4b09eecb8f.tar.zst
nixlib-52cf78ef229adc70c9e93abb378cdf4b09eecb8f.zip
added cv: Tool that shows the progress of coreutils programs
Diffstat (limited to 'pkgs/tools/misc/cv')
-rw-r--r--pkgs/tools/misc/cv/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/misc/cv/default.nix b/pkgs/tools/misc/cv/default.nix
new file mode 100644
index 000000000000..28c6347a63dd
--- /dev/null
+++ b/pkgs/tools/misc/cv/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  name = "cv-2014-07-20";
+
+  src = fetchFromGitHub {
+    owner = "Xfennec";
+    repo = "cv";
+    rev = "7441de974cc13f3b07903bb86c41be4e45c8e81b";
+    sha256 = "19ky88b52a8zcv7lx802y4zi3sp0cdhya08cnax0yvlwwq43w6x9";
+  };
+
+  buildInputs = [ ];
+
+  makeFlags = [ "PREFIX=$(out)" ];
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/Xfennec/cv;
+    description = "Tool that shows the progress of coreutils programs";
+    license = licenses.gpl3;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ pSub ];
+  };
+}