flakelike

This commit is contained in:
Wroclaw 2024-06-17 07:54:59 +02:00
parent 9cd9d8fe3c
commit ba94153c3b
8 changed files with 221 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{ inputs ? import ../../inputs.nix {} }:
selfLib: superLib: {
trivial = superLib.trivial // {
versionSuffix = ".git.${builtins.substring 0 12 inputs.lock.nixpkgs}";
revisionWithDefault = default: inputs.lock.nixpkgs or default;
};
}