summaryrefslogtreecommitdiff
path: root/shotcut-git.nix
blob: c3b50be0cab237e847339c125c81b27c22ed90f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ inputs }:
self: super: {
  shotcut-git =
    with super;
    (shotcut.override {
      mlt = self.mlt_my;
    }).overrideAttrs
      (old: rec {
        version = "00.00.00";
        src = fetchGit {
          url = "https://github.com/mltframework/shotcut";
          ref = "master";
          #              submodules = true;
        };
        patches = [ ];
      });
}