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
18 lines
623 B
Nix
18 lines
623 B
Nix
{ stdenv, fetchurl, cmake, zlib, openssl, protobuf, protobufc, lzo, libunwind } :
|
|
stdenv.mkDerivation rec {
|
|
name = "zbackup-${version}";
|
|
version = "1.4.4";
|
|
src = fetchurl {
|
|
url = "https://github.com/zbackup/zbackup/archive/1.4.4.tar.gz";
|
|
sha256 = "11csla7n44lg7x6yqg9frb21vnkr8cvnh6ardibr3nj5l39crk7g";
|
|
};
|
|
buildInputs = [ zlib openssl protobuf lzo libunwind ];
|
|
nativeBuildInputs = [ cmake protobufc ];
|
|
meta = {
|
|
description = "A versatile deduplicating backup tool";
|
|
homepage = http://zbackup.org/;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
};
|
|
}
|