about summary refs log tree commit diff
path: root/pkgs/applications/video/cinelerra
diff options
context:
space:
mode:
authorHerwig Hochleitner <herwig@bendlas.net>2019-10-07 15:49:31 +0200
committerHerwig Hochleitner <herwig@bendlas.net>2019-10-12 15:47:19 +0200
commit817d23d7e0a3e0b2917625c0d7c9f0ddd01c6fa3 (patch)
treefe24047355d4673bf84edd5f0586f56f736de916 /pkgs/applications/video/cinelerra
parent79ee6d8284e5b20c0dc2fa09a2c2f90e56379e55 (diff)
cinelerra: use github source
fixes build error due to discontinued repository
Diffstat (limited to 'pkgs/applications/video/cinelerra')
-rw-r--r--pkgs/applications/video/cinelerra/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/video/cinelerra/default.nix b/pkgs/applications/video/cinelerra/default.nix
index eb3946b9ed03f..d567622000ea0 100644
--- a/pkgs/applications/video/cinelerra/default.nix
+++ b/pkgs/applications/video/cinelerra/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, autoconf, automake, libtool
+{ stdenv, fetchFromGitHub, autoconf, automake, libtool
 , pkgconfig, faad2, faac, a52dec, alsaLib, fftw, lame, libavc1394
 , libiec61883, libraw1394, libsndfile, libvorbis, libogg, libjpeg
 , libtiff, freetype, mjpegtools, x264, gettext, openexr
@@ -9,8 +9,9 @@
 stdenv.mkDerivation {
   name = "cinelerra-unstable-2016-01-12";
 
-  src = fetchgit {
-    url = "git://git.cinelerra-cv.org/j6t/cinelerra.git";
+  src = fetchFromGitHub {
+    owner = "ratopi";
+    repo = "CinelerraCV";
     rev = "454be60e201c18c1fc3f1f253a6d2184fcfc94c4";
     sha256 = "1n4kshqhgnr7aivsi8dgx48phyd2nzvv4szbc82mndklvs9jfb7r";
   };