summaryrefslogtreecommitdiff
path: root/shotcut-git.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shotcut-git.nix')
-rw-r--r--shotcut-git.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/shotcut-git.nix b/shotcut-git.nix
new file mode 100644
index 0000000..c3b50be
--- /dev/null
+++ b/shotcut-git.nix
@@ -0,0 +1,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 = [ ];
+ });
+}