forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
338 changed files
with
3,522 additions
and
2,276 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
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
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# This function produces a lib overlay to be used by the nixpkgs | ||
# & nixpkgs/lib flakes to provide meaningful values for | ||
# `lib.trivial.version` et al.. | ||
# | ||
# Internal and subject to change, don't use this anywhere else! | ||
# Instead, consider using a public interface, such as this flake here | ||
# in this directory, `lib/`, or use the nixpkgs flake, which applies | ||
# this logic for you in its `lib` output attribute. | ||
|
||
self: # from the flake | ||
|
||
finalLib: prevLib: # lib overlay | ||
|
||
{ | ||
trivial = prevLib.trivial // { | ||
versionSuffix = | ||
".${finalLib.substring 0 8 (self.lastModifiedDate or "19700101")}.${self.shortRev or "dirty"}"; | ||
revisionWithDefault = default: self.rev or default; | ||
}; | ||
} |
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 |
---|---|---|
@@ -1,5 +1,10 @@ | ||
{ | ||
description = "Library of low-level helper functions for nix expressions."; | ||
|
||
outputs = { self }: { lib = import ./.; }; | ||
outputs = { self }: | ||
let | ||
lib0 = import ./.; | ||
in { | ||
lib = lib0.extend (import ./flake-version-info.nix self); | ||
}; | ||
} |
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
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
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
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 |
---|---|---|
|
@@ -605,6 +605,12 @@ | |
githubId = 4717906; | ||
name = "Jakub Skokan"; | ||
}; | ||
ajaxbits = { | ||
email = "[email protected]"; | ||
github = "ajaxbits"; | ||
githubId = 45179933; | ||
name = "Alex Jackson"; | ||
}; | ||
ajgrf = { | ||
email = "[email protected]"; | ||
github = "ajgrf"; | ||
|
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
Oops, something went wrong.