mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
19 lines
458 B
Nix
19 lines
458 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 = http://lbzip2.org/;
|
|
description = "Parallel bzip2 compression utility";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|