about summary refs log tree commit diff
path: root/pkgs/tools/misc/cv/default.nix
blob: 28c6347a63ddfc387838f514c985f1dbaa470e4a (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
{ 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 ];
  };
}