summaryrefslogtreecommitdiff
path: root/shotcut-git.nix
diff options
context:
space:
mode:
authorsss <sss@dark-alexandr.net>2025-07-01 02:03:23 +0300
committersss <sss@dark-alexandr.net>2025-07-01 02:03:23 +0300
commit188f69443c0873970d41217b52e11c46d584c06d (patch)
treeeab9f51137f212c7bfe7e512490748dae371b698 /shotcut-git.nix
nix common overlays initial commit
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 = [ ];
+ });
+}