mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
bup: enable par2 by default
The par2 closure is <300 KB, so having it enabled by default seems reasonable.
This commit is contained in:
parent
be6e9dce32
commit
65be0b3a4b
2 changed files with 2 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
{ stdenv, fetchFromGitHub, fetchurl, makeWrapper
|
||||
, perl, pandoc, python2Packages, git
|
||||
, par2cmdline ? null, par2Support ? false
|
||||
, par2cmdline ? null, par2Support ? true
|
||||
}:
|
||||
|
||||
assert par2Support -> par2cmdline != null;
|
||||
|
|
|
@ -1118,9 +1118,7 @@ with pkgs;
|
|||
inherit (pythonPackages) gyp;
|
||||
};
|
||||
|
||||
bup = callPackage ../tools/backup/bup {
|
||||
par2Support = config.bup.par2Support or false;
|
||||
};
|
||||
bup = callPackage ../tools/backup/bup { };
|
||||
|
||||
burp_1_3 = callPackage ../tools/backup/burp/1.3.48.nix { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue