Merge branch 'master' into closure-size
TODO: there was more significant refactoring of qtbase and plasma 5.5 on master, and I'm deferring pointing to correct outputs to later.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{ lib, stdenv, fetchurl, zlib, gd, texinfo4, makeWrapper, readline
|
||||
, withTeXLive ? false, texLive
|
||||
, withTeXLive ? false, texlive
|
||||
, withLua ? false, lua
|
||||
, emacs ? null
|
||||
, libX11 ? null
|
||||
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs =
|
||||
[ zlib gd texinfo4 readline pango cairo pkgconfig makeWrapper ]
|
||||
++ lib.optional withTeXLive texLive
|
||||
++ lib.optional withTeXLive (texlive.combine { inherit (texlive) scheme-small; })
|
||||
++ lib.optional withLua lua
|
||||
++ lib.optionals withX [ libX11 libXpm libXt libXaw ]
|
||||
++ lib.optional withQt [ qt ]
|
||||
|
||||
@@ -1,25 +1,38 @@
|
||||
{stdenv, fetchurl}:
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "jhead-2.87";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "jhead-${version}";
|
||||
version = "3.00";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.sentex.net/~mwandel/jhead/jhead-2.87.tar.gz;
|
||||
sha256 = "0vpp5jz49w5qzjzq3vllrbff7fr906jy8a8sq12yq8kw6qwbjjsl";
|
||||
url = "http://www.sentex.net/~mwandel/jhead/${name}.tar.gz";
|
||||
sha256 = "0pl9s9ssb2a9di82f3ypin2hd098ns8kzdsxw3i2y94f07d03k48";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
sed -i s@/usr/bin@$out/bin@ makefile
|
||||
substituteInPlace makefile \
|
||||
--replace /usr/local/bin $out/bin
|
||||
|
||||
substituteInPlace jhead.c \
|
||||
--replace "\" Compiled: \"__DATE__" ""
|
||||
'';
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/bin
|
||||
installPhase = ''
|
||||
mkdir -p \
|
||||
$out/bin \
|
||||
$out/man/man1 \
|
||||
$out/share/doc/${name}
|
||||
|
||||
cp -v jhead $out/bin
|
||||
cp -v jhead.1 $out/man/man1
|
||||
cp -v *.txt $out/share/doc/${name}
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.sentex.net/~mwandel/jhead/;
|
||||
description = "Exif Jpeg header manipulation tool";
|
||||
license = stdenv.lib.licenses.free;
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
license = licenses.publicDomain;
|
||||
maintainers = with maintainers; [ viric rycee ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchurl, cmake, pkgconfig
|
||||
, qt5, gsl, getdata, netcdf, muparser, matio
|
||||
, qtbase, gsl, getdata, netcdf, muparser, matio
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "Kst-2.0.8";
|
||||
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
buildInputs = [ qt5.base gsl getdata netcdf muparser matio ];
|
||||
buildInputs = [ qtbase gsl getdata netcdf muparser matio ];
|
||||
|
||||
cmakeFlags = "-Dkst_qt5=1 -Dkst_release=1";
|
||||
|
||||
|
||||
@@ -1,20 +1,24 @@
|
||||
{ stdenv, fetchurl, pkgconfig, cairo, gtk, poppler }:
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
, cairo, gtk, poppler }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "pdf2svg-0.2.2";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pdf2svg-${version}";
|
||||
version = "0.2.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.cityinthesky.co.uk/wp-content/uploads/2013/10/pdf2svg-0.2.2.tar.gz" ;
|
||||
sha256 = "1jy6iqwwvd7drcybmdlmnc8m970f82fd7fisa8ha5zh13p49r8n2";
|
||||
src = fetchFromGitHub {
|
||||
owner = "db9052";
|
||||
repo = "pdf2svg";
|
||||
rev = "v${version}";
|
||||
sha256 = "14ffdm4y26imq99wjhkrhy9lp33165xci1l5ndwfia8hz53bl02k";
|
||||
};
|
||||
|
||||
buildInputs = [ cairo pkgconfig poppler gtk ];
|
||||
buildInputs = [ autoreconfHook cairo pkgconfig poppler gtk ];
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "PDF converter to SVG format";
|
||||
homepage = http://www.cityinthesky.co.uk/opensource/pdf2svg;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = [ stdenv.lib.maintainers.ianwookim ];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.ianwookim ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -4,11 +4,11 @@
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "vips-8.0.2";
|
||||
name = "vips-8.1.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.vips.ecs.soton.ac.uk/supported/current/${name}.tar.gz";
|
||||
sha256 = "0fpshv71sxbkbycxgd2hvwn7fyq9rm0rsgq0b1zld1an88mi0v8y";
|
||||
sha256 = "014sgpqj832vl5k212jv25sjakrsifnspjfclywpmn7cwaqwjlvx";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
|
||||
Reference in New Issue
Block a user