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
|
, libjpeg
|
||||||
, zlib
|
, zlib
|
||||||
, libewf
|
, libewf
|
||||||
, enableNtfs ? false, ntfs3g ? null
|
, enableNtfs ? stdenv.isDarwin, ntfs3g ? null
|
||||||
, enableExtFs ? false, e2fsprogs ? null
|
, enableExtFs ? stdenv.isDarwin, e2fsprogs ? null
|
||||||
, enableQt ? false, qtbase ? null, qttools ? null, qwt ? null
|
, enableQt ? false, qtbase ? null, qttools ? null, qwt ? null
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -65,4 +65,3 @@ assert enableQt -> qwt != null;
|
|||||||
maintainers = with maintainers; [ fgaz eelco ];
|
maintainers = with maintainers; [ fgaz eelco ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6834,10 +6834,7 @@ in
|
|||||||
|
|
||||||
xe = callPackage ../tools/system/xe { };
|
xe = callPackage ../tools/system/xe { };
|
||||||
|
|
||||||
testdisk = libsForQt5.callPackage ../tools/system/testdisk {
|
testdisk = libsForQt5.callPackage ../tools/system/testdisk { };
|
||||||
enableExtFs = !stdenv.isDarwin;
|
|
||||||
enableNtfs = !stdenv.isDarwin;
|
|
||||||
};
|
|
||||||
|
|
||||||
testdisk-qt = testdisk.override { enableQt = true; };
|
testdisk-qt = testdisk.override { enableQt = true; };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user