summaryrefslogtreecommitdiff
path: root/flacon_my.nix
blob: e7b006050ff44ccc36858c4aaa46defe48db37f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ inputs }:
self: super: {
  flacon_my =
    with super;
    flacon.overrideAttrs (oldAttrs: rec {
      version = "git";
      src = fetchGit {
        url = "https://github.com/flacon/flacon";
        ref = "master";
      };
    });
}