-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kde5.frameworks: use multiple outputs
- Loading branch information
Showing
1 changed file
with
2 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,8 @@ let | |
name = "${name}-${version}"; | ||
inherit src; | ||
|
||
outputs = [ "dev" "out" ]; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
ttuegel
Author
Member
|
||
|
||
cmakeFlags = | ||
(args.cmakeFlags or []) | ||
++ [ "-DBUILD_TESTING=OFF" ] | ||
|
It looks like nix considers
dev
to be the default output since it is listed first here. Is this really what we want? I was quite surprised when I found out that${kde5.breeze-icons}
doesn't actually have any icons in it (you need to use${kde5.breeze-icons.out}
to get the icons)