nixpkgs/pkgs/tools/compression/lzop/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

19 lines
426 B
Nix

{stdenv, fetchurl, lzo}:
stdenv.mkDerivation rec {
name = "lzop-1.04";
src = fetchurl {
url = "https://www.lzop.org/download/${name}.tar.gz";
sha256 = "0h9gb8q7y54m9mvy3jvsmxf21yx8fc3ylzh418hgbbv0i8mbcwky";
};
buildInputs = [ lzo ];
meta = with stdenv.lib; {
homepage = http://www.lzop.org;
description = "Fast file compressor";
license = licenses.gpl2;
platforms = platforms.unix;
};
}