parent
66d65b67d8
commit
6fe48ccd04
1 changed files with 5 additions and 1 deletions
|
@ -185,7 +185,11 @@ impl Default for NixEvalJobs {
|
||||||
impl From<EvalLineDerivation> for AttributeOutput {
|
impl From<EvalLineDerivation> for AttributeOutput {
|
||||||
fn from(eld: EvalLineDerivation) -> Self {
|
fn from(eld: EvalLineDerivation) -> Self {
|
||||||
Self {
|
Self {
|
||||||
attribute: eld.attribute,
|
// nix-eval-jobs adds surrounding quotes for attribute names
|
||||||
|
// with dots:
|
||||||
|
//
|
||||||
|
// <https://github.com/nix-community/nix-eval-jobs/commit/61c9f4cf>
|
||||||
|
attribute: eld.attribute.trim_matches('"').to_string(),
|
||||||
drv_path: eld.drv_path,
|
drv_path: eld.drv_path,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue