diff options
author | sinanmohd <sinan@sinanmohd.com> | 2023-09-06 18:48:34 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2023-09-06 19:02:57 +0530 |
commit | 4972c53e861752d9b3ca29a58c71db84973c9ab5 (patch) | |
tree | 046098e07e3570a2107ff3ef979a0b74d837ea0a /overlays/dwl-sinan.nix | |
parent | 28f11cc5c704b6901dc94551fb1504f0091bb69f (diff) |
repo: restructuring
Diffstat (limited to 'overlays/dwl-sinan.nix')
-rw-r--r-- | overlays/dwl-sinan.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/overlays/dwl-sinan.nix b/overlays/dwl-sinan.nix new file mode 100644 index 0000000..ff5c999 --- /dev/null +++ b/overlays/dwl-sinan.nix @@ -0,0 +1,14 @@ +final: prev: + +{ + dwl-sinan = prev.dwl.overrideAttrs (finalAttrs: prevAttrs: + { + pname = prevAttrs.pname + "-sinan"; + src = prev.fetchgit { + url = "https://git.sinanmohd.com/dwl"; + rev = "cadde97ee92381bfc2222bf18cd876526ab8c948"; + hash = "sha256-H2HgOQnQ5Eltz8/OVpKlS2U89aaivg5t63Ie4fembw8="; + }; + } + ); +} |