forked from mirrors/nixpkgs
ImageMagick and asciidoc build on 64-bit darwin
Tested by @zefhemel Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
parent
38185f8e51
commit
6555e31fb4
|
@ -55,7 +55,7 @@ stdenv.mkDerivation rec {
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.imagemagick.org/;
|
homepage = http://www.imagemagick.org/;
|
||||||
description = "A software suite to create, edit, compose, or convert bitmap images";
|
description = "A software suite to create, edit, compose, or convert bitmap images";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux ++ [ "x86_64-darwin" ];
|
||||||
maintainers = with maintainers; [ the-kenny ];
|
maintainers = with maintainers; [ the-kenny ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -257,7 +257,7 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
homepage = "http://www.methods.co.nz/asciidoc/";
|
homepage = "http://www.methods.co.nz/asciidoc/";
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux ++ [ "x86_64-darwin" ];
|
||||||
maintainers = [ maintainers.bjornfor ];
|
maintainers = [ maintainers.bjornfor ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue