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