diff options
Diffstat (limited to 'cdrtools.nix')
-rw-r--r-- | cdrtools.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cdrtools.nix b/cdrtools.nix new file mode 100644 index 0000000..be5665f --- /dev/null +++ b/cdrtools.nix @@ -0,0 +1,12 @@ +{ inputs }: +self: super: { + cdrtools = + with super; + (cdrtools.override { }).overrideAttrs (oldAttrs: rec { + version = "git"; + src = fetchGit { + url = "https://codeberg.org/schilytools/schilytools"; + ref = "master"; + }; + }); +} |