about summary refs log tree commit diff
path: root/pkgs/tools/system/bar/default.nix
blob: 1109def2bf30924256c664610cfd8a4688bb3348 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "bar";
  version = "1.11.1";

  src = fetchurl {
    url = "mirror://sourceforge/project/clpbar/clpbar/bar-${version}/bar_${version}.tar.gz";
    sha256 = "00v5cb6vzizyyhflgr62d3k8dqc0rg6wdgfyyk11c0s0r32mw3zs";
  };

  meta = {
    description = "Console progress bar";
    homepage = "https://clpbar.sourceforge.net/";
    license = lib.licenses.gpl2;
    maintainers = [ lib.maintainers.rdnetto ];
    platforms = lib.platforms.all;
    mainProgram = "bar";
  };
}