at 16.09-beta 18 lines 458 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "lbzip2-2.5"; 5 6 src = fetchurl { 7 url = "http://archive.lbzip2.org/${name}.tar.gz"; 8 sha256 = "1sahaqc5bw4i0iyri05syfza4ncf5cml89an033fspn97klmxis6"; 9 }; 10 11 meta = with stdenv.lib; { 12 homepage = http://lbzip2.org/; 13 description = "Parallel bzip2 compression utility"; 14 license = licenses.gpl3; 15 maintainers = with maintainers; [ abbradar ]; 16 platforms = platforms.unix; 17 }; 18}