summaryrefslogtreecommitdiff
path: root/qpwgraph-git.nix
diff options
context:
space:
mode:
Diffstat (limited to 'qpwgraph-git.nix')
-rw-r--r--qpwgraph-git.nix11
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";
+ };
+ });
+}