From c090e526e21a960f34f0f02f9904757952d5a36e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 6 May 2017 14:31:48 +0200 Subject: [PATCH 1/4] graph: Don't use PACKAGE-FULL-NAME. Derivation files aren't named according to PACKAGE-FULL-NAME rules. We already forfeit any supposed abstraction by manually adding ".drv". * tests/graph.scm ("bag-emerged DAG"): Use PACKAGE-NAME and PACKAGE-VERSION directly. --- tests/graph.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/graph.scm b/tests/graph.scm index 6431c482f..53475597a 100644 --- a/tests/graph.scm +++ b/tests/graph.scm @@ -130,7 +130,9 @@ edges." (map (lambda (destination) (list "p-0.drv" (string-append - (package-full-name destination) + (package-name destination) + "-" + (package-version destination) ".drv"))) implicit))))))) -- 2.12.2