diff options
author | sss <sss@dark-alexandr.net> | 2025-07-01 02:03:23 +0300 |
---|---|---|
committer | sss <sss@dark-alexandr.net> | 2025-07-01 02:03:23 +0300 |
commit | 188f69443c0873970d41217b52e11c46d584c06d (patch) | |
tree | eab9f51137f212c7bfe7e512490748dae371b698 /qpwgraph-git.nix |
nix common overlays initial commit
Diffstat (limited to 'qpwgraph-git.nix')
-rw-r--r-- | qpwgraph-git.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/qpwgraph-git.nix b/qpwgraph-git.nix new file mode 100644 index 0000000..f5929d0 --- /dev/null +++ b/qpwgraph-git.nix @@ -0,0 +1,11 @@ +{ inputs }: +self: super: { + qpwgraph_my = + with super; + qpwgraph.overrideAttrs (old: rec { + src = fetchGit { + url = "https://gitlab.freedesktop.org/rncbc/qpwgraph"; + ref = "main"; + }; + }); +} |