Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 19 lines 506 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "bar"; 5 version = "1.11.1"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/project/clpbar/clpbar/bar-${version}/bar_${version}.tar.gz"; 9 sha256 = "00v5cb6vzizyyhflgr62d3k8dqc0rg6wdgfyyk11c0s0r32mw3zs"; 10 }; 11 12 meta = { 13 description = "Console progress bar"; 14 homepage = "https://clpbar.sourceforge.net/"; 15 license = lib.licenses.gpl2; 16 maintainers = [ lib.maintainers.rdnetto ]; 17 platforms = lib.platforms.all; 18 }; 19}