forked from mirrors/nixpkgs
Adding coriander. I don't know how to make its gconf thing work, so it shows a
warning at gui start. svn path=/nixpkgs/trunk/; revision=33976
This commit is contained in:
parent
b30b5a192e
commit
f9526cd7f1
pkgs
24
pkgs/applications/video/coriander/default.nix
Normal file
24
pkgs/applications/video/coriander/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{stdenv, fetchurl, pkgconfig, glib, gtk, libgnomeui, libXv, libraw1394, libdc1394
|
||||||
|
, SDL, automake, GConf }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "coriander-2.0.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://damien.douxchamps.net/ieee1394/coriander/archives/coriander-2.0.1.tar.gz";
|
||||||
|
sha256 = "0l6hpfgy5r4yardilmdrggsnn1fbfww516sk5a90g1740cd435x5";
|
||||||
|
};
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
cp ${automake}/share/automake-*/mkinstalldirs .
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig glib gtk libgnomeui libXv libraw1394 libdc1394 SDL GConf ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://damien.douxchamps.net/ieee1394/coriander/;
|
||||||
|
description = "GUI for controlling a Digital Camera through the IEEE1394 bus";
|
||||||
|
maintainers = with stdenv.lib.maintainers; [viric];
|
||||||
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -6471,6 +6471,10 @@ let
|
||||||
|
|
||||||
compizconfig_python = callPackage ../applications/window-managers/compiz/config-python.nix { };
|
compizconfig_python = callPackage ../applications/window-managers/compiz/config-python.nix { };
|
||||||
|
|
||||||
|
coriander = callPackage ../applications/video/coriander {
|
||||||
|
inherit (gnome) libgnomeui GConf;
|
||||||
|
};
|
||||||
|
|
||||||
libcompizconfig = callPackage ../applications/window-managers/compiz/libcompizconfig.nix { };
|
libcompizconfig = callPackage ../applications/window-managers/compiz/libcompizconfig.nix { };
|
||||||
|
|
||||||
compiz_bcop = callPackage ../applications/window-managers/compiz/bcop.nix { };
|
compiz_bcop = callPackage ../applications/window-managers/compiz/bcop.nix { };
|
||||||
|
|
Loading…
Reference in a new issue