got overlays working, patches next

This commit is contained in:
2024-04-19 17:42:37 -06:00
parent 71c838a95a
commit f1a1656155
6 changed files with 15 additions and 843 deletions

11
overlays/blanket.nix Normal file
View File

@@ -0,0 +1,11 @@
final: prev: {
blanket = prev.blanket.overrideAttrs (old: rec {
version = "0.7.0";
src = prev.fetchFromGitHub {
owner = "rafaelmardojai";
repo = "blanket";
rev = "refs/tags/${version}";
sha256 = "sha256-mY7c5i0me7mMbD8c6eGJeaZpR8XI5QVL4n3M+j15Z1c=";
};
});
}