nixpkgs/pkgs/tools/compression/lbzip2/default.nix
c0bw3b 69b393ace5 Treewide: update some problematic homepages
These URLs are reported as problematic by Repology.
It could be a permanent redirection
or the page does not exist anymore
2019-12-08 10:21:29 -08:00

19 lines
501 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "lbzip2-2.5";
src = fetchurl {
url = "http://archive.lbzip2.org/${name}.tar.gz";
sha256 = "1sahaqc5bw4i0iyri05syfza4ncf5cml89an033fspn97klmxis6";
};
meta = with stdenv.lib; {
homepage = "https://github.com/kjn/lbzip2"; # Formerly http://lbzip2.org/
description = "Parallel bzip2 compression utility";
license = licenses.gpl3;
maintainers = with maintainers; [ abbradar ];
platforms = platforms.unix;
};
}