mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
testdisk: inline platform specific option defaults
Makes it easier to read since one does not need to be aware of overrides in all-packages.nix.
This commit is contained in:
parent
10bfa40677
commit
b2b29d4398
@ -7,8 +7,8 @@
|
||||
, libjpeg
|
||||
, zlib
|
||||
, libewf
|
||||
, enableNtfs ? false, ntfs3g ? null
|
||||
, enableExtFs ? false, e2fsprogs ? null
|
||||
, enableNtfs ? stdenv.isDarwin, ntfs3g ? null
|
||||
, enableExtFs ? stdenv.isDarwin, e2fsprogs ? null
|
||||
, enableQt ? false, qtbase ? null, qttools ? null, qwt ? null
|
||||
}:
|
||||
|
||||
@ -65,4 +65,3 @@ assert enableQt -> qwt != null;
|
||||
maintainers = with maintainers; [ fgaz eelco ];
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -6834,10 +6834,7 @@ in
|
||||
|
||||
xe = callPackage ../tools/system/xe { };
|
||||
|
||||
testdisk = libsForQt5.callPackage ../tools/system/testdisk {
|
||||
enableExtFs = !stdenv.isDarwin;
|
||||
enableNtfs = !stdenv.isDarwin;
|
||||
};
|
||||
testdisk = libsForQt5.callPackage ../tools/system/testdisk { };
|
||||
|
||||
testdisk-qt = testdisk.override { enableQt = true; };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user