overlays: add 'nix-serve-ng-initLibStore'

This commit is contained in:
Bruno BELANYI 2023-05-01 20:07:28 +02:00
parent fe8481292d
commit 872f045740
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,3 @@
{
# NOTE: no overlays at the moment
nix-serve-ng-initLibStore = import ./nix-serve-ng-initLibStore;
}

View File

@ -0,0 +1,11 @@
final: prev:
{
nix-serve-ng = prev.nix-serve-ng.overrideAttrs (_: {
src = final.fetchFromGitHub {
owner = "aristanetworks";
repo = "nix-serve-ng";
rev = "dabf46d65d8e3be80fa2eacd229eb3e621add4bd";
hash = "sha256-SoJJ3rMtDMfUzBSzuGMY538HDIj/s8bPf8CjIkpqY2w=";
};
});
}