depot/third_party/nixpkgs/pkgs/tools/system/bar/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

20 lines
531 B
Nix

{ 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";
};
}