inputs: pin nixpkgs-unstable
This commit is contained in:
parent
75f5d7ee9d
commit
77ef7434f2
7 changed files with 35 additions and 28 deletions
16
pkgs/overlays/unstable-with-meta.nix
Normal file
16
pkgs/overlays/unstable-with-meta.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
unstableSource,
|
||||
revision,
|
||||
}: self: super:
|
||||
|
||||
let
|
||||
version = builtins.readFile "${unstableSource}/lib/.version" + ".git." + builtins.substring 0 12 revision;
|
||||
useUnstable = self.config.useUnstable or true;
|
||||
|
||||
in
|
||||
import ./unstable-from-source.nix {
|
||||
inherit unstableSource;
|
||||
} self super // {
|
||||
unstableVersion = self.lib.optionalString useUnstable version;
|
||||
unstableRevision = self.lib.optionalString useUnstable revision;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue