summaryrefslogtreecommitdiff
path: root/neochat-git.nix
diff options
context:
space:
mode:
Diffstat (limited to 'neochat-git.nix')
-rw-r--r--neochat-git.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/neochat-git.nix b/neochat-git.nix
new file mode 100644
index 0000000..9422eb3
--- /dev/null
+++ b/neochat-git.nix
@@ -0,0 +1,12 @@
+{ inputs }:
+self: super: {
+ neochat-git =
+ with super;
+ neochat.overrideAttrs (oldAttrs: rec {
+ version = "git";
+ src = fetchGit {
+ url = "https://github.com/KDE/neochat/";
+ ref = "master";
+ };
+ });
+}