lorri: remove unnecessary output override
This commit is contained in:
parent
e7979aadea
commit
5c84d57a59
|
@ -37,6 +37,8 @@ in (rustPlatform.buildRustPackage rec {
|
||||||
inherit sha256;
|
inherit sha256;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
outputs = [ "out" "man" "doc" ];
|
||||||
|
|
||||||
inherit cargoSha256;
|
inherit cargoSha256;
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
@ -68,7 +70,4 @@ in (rustPlatform.buildRustPackage rec {
|
||||||
nixos = nixosTests.lorri;
|
nixos = nixosTests.lorri;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}).overrideAttrs (old: {
|
|
||||||
# add man and doc outputs to put our documentation into
|
|
||||||
outputs = old.outputs or [ "out" ] ++ [ "man" "doc" ];
|
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue