doxygen: qt depends on udev(!), so we cannot build the doxygen GUI on other Unix variants
svn path=/nixpkgs/trunk/; revision=28448
This commit is contained in:
parent
0d032ba736
commit
a34580133a
@ -1,7 +1,10 @@
|
||||
{ stdenv, fetchurl, perl, flex, bison, qt }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
let
|
||||
name = "doxygen-1.7.4";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit name;
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://ftp.stack.nl/pub/users/dimitri/${name}.src.tar.gz";
|
||||
@ -44,6 +47,6 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
maintainers = [stdenv.lib.maintainers.simons];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
platforms = if (qt != null) then stdenv.lib.platforms.linux else stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user