make-squashfs: use __structuredAttrs

Makes it easier to enable discarding of references, a feature of Nix
2.14 which requires structured attrs.
This commit is contained in:
Naïm Favier 2023-02-03 15:25:12 +01:00
parent 276f75e5ff
commit 56226c4674
No known key found for this signature in database
GPG Key ID: 95AFCE8211908325

View File

@ -10,6 +10,7 @@
stdenv.mkDerivation {
name = "squashfs.img";
__structuredAttrs = true;
nativeBuildInputs = [ squashfsTools ];