about summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.4/extragear/kdenlive/default.nix
blob: 8af0db2fcc8832c64b57433e872010accde19b96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{stdenv, fetchurl, lib, cmake, qt4, perl, kdelibs, automoc4, phonon, mlt, gettext,
shared_mime_info, soprano}:

stdenv.mkDerivation {
  name = "kdenlive-0.7.7.1";
  src = fetchurl {
    url = mirror://sourceforge/kdenlive/kdenlive-0.7.7.1.tar.gz;
    sha256 = "047kpzfdmipgnnkbdhcpy5c0kqgpg7yn3qhyd7inlplmyd3i1pfx";
  };

  buildInputs = [ cmake qt4 perl kdelibs automoc4 phonon mlt gettext
    shared_mime_info soprano ];

  meta = {
    description = "Free and open source video editor";
    license = "GPLv2+";
    homepage = http://www.kdenlive.org/;
    maintainers = with stdenv.lib.maintainers; [viric];
    platforms = with stdenv.lib.platforms; linux;
  };
}