Merge pull request #37035 from rdnetto/master

bar: init at version 1.11.1
This commit is contained in:
lewo
2018-03-18 09:23:46 +01:00
committed by GitHub
4 changed files with 25 additions and 1 deletions
+18
View File
@@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
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/;
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.rdnetto ];
platforms = stdenv.lib.platforms.all;
};
}