nixpkgs/pkgs/tools/system/bar/default.nix

19 lines
477 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
name = "bar-1.11.1";
src = fetchurl {
url = "mirror://sourceforge/project/clpbar/clpbar/bar-1.11.1/bar_1.11.1.tar.gz";
sha256 = "00v5cb6vzizyyhflgr62d3k8dqc0rg6wdgfyyk11c0s0r32mw3zs";
};
meta = {
description = "Console progress bar";
homepage = "http://clpbar.sourceforge.net/";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.rdnetto ];
platforms = lib.platforms.all;
};
}