Merge branch 'master' into stdenv-updates.
This commit is contained in:
commit
b33ad366a1
@ -14,6 +14,11 @@ stdenv.mkDerivation rec {
|
|||||||
xlibs.xproto
|
xlibs.xproto
|
||||||
];
|
];
|
||||||
|
|
||||||
|
preInstall = ''
|
||||||
|
sed -e "s@\`which bristol\`@$out/bin/bristol@g" -i bin/startBristol
|
||||||
|
sed -e "s@\`which brighton\`@$out/bin/brighton@g" -i bin/startBristol
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A range of synthesiser, electric piano and organ emulations";
|
description = "A range of synthesiser, electric piano and organ emulations";
|
||||||
homepage = http://bristol.sourceforge.net;
|
homepage = http://bristol.sourceforge.net;
|
||||||
|
@ -11,6 +11,9 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = [ ncurses boehmgc ];
|
buildInputs = [ ncurses boehmgc ];
|
||||||
nativeBuildInputs = [ help2man perl ];
|
nativeBuildInputs = [ help2man perl ];
|
||||||
|
|
||||||
|
# `help2man' wants to run Zile, which fails when cross-compiling.
|
||||||
|
crossAttrs.buildNativeInputs = [];
|
||||||
|
|
||||||
# Tests can't be run because most of them rely on the ability to
|
# Tests can't be run because most of them rely on the ability to
|
||||||
# fiddle with the terminal.
|
# fiddle with the terminal.
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
@ -46,6 +46,8 @@ stdenv.mkDerivation rec {
|
|||||||
'' else "";
|
'' else "";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.imagemagick.org;
|
homepage = http://www.imagemagick.org/;
|
||||||
|
description = "A software suite to create, edit, compose, or convert bitmap images";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
47
pkgs/applications/graphics/ipe/default.nix
Normal file
47
pkgs/applications/graphics/ipe/default.nix
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, zlib, qt4, freetype, cairo, lua5, texLive, ghostscriptX
|
||||||
|
, makeWrapper }:
|
||||||
|
let ghostscript = ghostscriptX; in
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "ipe-7.1.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/ipe7/ipe/7.1.0/${name}-src.tar.gz";
|
||||||
|
sha256 = "04fs5slci3bmpgz8d038h3hnzzdw57xykcpsmisdxci2xrkxx41k";
|
||||||
|
};
|
||||||
|
|
||||||
|
# changes taken from Gentoo portage
|
||||||
|
preConfigure = ''
|
||||||
|
cd src
|
||||||
|
sed -i \
|
||||||
|
-e 's/fpic/fPIC/' \
|
||||||
|
-e 's/moc-qt4/moc/' \
|
||||||
|
config.mak || die
|
||||||
|
sed -i -e 's/install -s/install/' common.mak || die
|
||||||
|
'';
|
||||||
|
|
||||||
|
IPEPREFIX="$$out";
|
||||||
|
URWFONTDIR="${texLive}/texmf-dist/fonts/type1/urw/";
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
pkgconfig zlib qt4 freetype cairo lua5 texLive ghostscript makeWrapper
|
||||||
|
];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
for prog in $out/bin/*; do
|
||||||
|
wrapProgram "$prog" --prefix PATH : "${texLive}/bin"
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
#TODO: make .desktop entry
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "An editor for drawing figures";
|
||||||
|
homepage = http://ipe7.sourceforge.net;
|
||||||
|
license = "GPLv3+";
|
||||||
|
longDescription = ''
|
||||||
|
Ipe is an extensible drawing editor for creating figures in PDF and Postscript format.
|
||||||
|
It supports making small figures for inclusion into LaTeX-documents
|
||||||
|
as well as presentations in PDF.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
@ -3,12 +3,12 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "2.0.5";
|
version = "2.0.5.1";
|
||||||
name = "lyx-${version}";
|
name = "lyx-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/${name}.tar.xz";
|
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/${name}.tar.xz";
|
||||||
sha256 = "00pv2d9p8j1p6x87kalbn1bgxg9l4zqh65zcajrnh10a76isv6nk";
|
sha256 = "18k9qbz40v6lqmkfcg98wvcv4wi4p36ach1jz3z2b15gbmv2gr9n";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
|
@ -79,10 +79,8 @@ let
|
|||||||
post23 = !versionOlder sourceInfo.version "24.0.0.0";
|
post23 = !versionOlder sourceInfo.version "24.0.0.0";
|
||||||
post24 = !versionOlder sourceInfo.version "25.0.0.0";
|
post24 = !versionOlder sourceInfo.version "25.0.0.0";
|
||||||
|
|
||||||
maybeFixPulseAudioBuild = optional (post23 && pulseSupport) (fetchurl {
|
maybeFixPulseAudioBuild = optional (post23 && pulseSupport)
|
||||||
url = http://archrepo.jeago.com/sources/chromium-dev/pulse_audio_fix.patch;
|
./pulse_audio_fix.patch;
|
||||||
sha256 = "1w91mirrkqigdhsj892mqxlc0nlv1dsp5shc46w9xf8nl96jxgfb";
|
|
||||||
});
|
|
||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
name = "${packageName}-${version}";
|
name = "${packageName}-${version}";
|
||||||
@ -197,7 +195,7 @@ in stdenv.mkDerivation rec {
|
|||||||
meta = {
|
meta = {
|
||||||
description = "Chromium, an open source web browser";
|
description = "Chromium, an open source web browser";
|
||||||
homepage = http://www.chromium.org/;
|
homepage = http://www.chromium.org/;
|
||||||
maintainers = with maintainers; [ goibhniu chaoflow ];
|
maintainers = with maintainers; [ goibhniu chaoflow aszlig ];
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
|
@ -0,0 +1,11 @@
|
|||||||
|
--- chromium-build/media/audio/pulse/pulse_output.cc.orig 2012-10-26 09:44:38.509209905 -0700
|
||||||
|
+++ chromium-build/media/audio/pulse/pulse_output.cc 2012-10-26 09:45:32.178819603 -0700
|
||||||
|
@@ -86,7 +86,7 @@
|
||||||
|
|
||||||
|
// All channel maps have the same size array of channel positions.
|
||||||
|
for (unsigned int channel = 0; channel != CHANNELS_MAX; ++channel) {
|
||||||
|
- int channel_position = kChannelOrderings[channel_layout][channel];
|
||||||
|
+ int channel_position = ChannelOrder(channel_layout, static_cast<Channels>(channel));
|
||||||
|
if (channel_position > -1) {
|
||||||
|
channel_map.map[channel_position] = ChromiumToPAChannelPosition(
|
||||||
|
static_cast<Channels>(channel));
|
176
pkgs/applications/networking/browsers/firefox/18.0.nix
Normal file
176
pkgs/applications/networking/browsers/firefox/18.0.nix
Normal file
@ -0,0 +1,176 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, gtk, pango, perl, python, zip, libIDL
|
||||||
|
, libjpeg, libpng, zlib, cairo, dbus, dbus_glib, bzip2, xlibs
|
||||||
|
, freetype, fontconfig, file, alsaLib, nspr, nss, libnotify
|
||||||
|
, yasm, mesa, sqlite, unzip, makeWrapper, pysqlite
|
||||||
|
|
||||||
|
, # If you want the resulting program to call itself "Firefox" instead
|
||||||
|
# of "Shiretoko" or whatever, enable this option. However, those
|
||||||
|
# binaries may not be distributed without permission from the
|
||||||
|
# Mozilla Foundation, see
|
||||||
|
# http://www.mozilla.org/foundation/trademarks/.
|
||||||
|
enableOfficialBranding ? false
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert stdenv.gcc ? libc && stdenv.gcc.libc != null;
|
||||||
|
|
||||||
|
rec {
|
||||||
|
|
||||||
|
firefoxVersion = "18.0";
|
||||||
|
|
||||||
|
xulVersion = "18.0"; # this attribute is used by other packages
|
||||||
|
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
urls = [
|
||||||
|
# It is better to use this url for official releases, to take load off Mozilla's ftp server.
|
||||||
|
"http://releases.mozilla.org/pub/mozilla.org/firefox/releases/${firefoxVersion}/source/firefox-${firefoxVersion}.source.tar.bz2"
|
||||||
|
# Fall back to this url for versions not available at releases.mozilla.org.
|
||||||
|
"ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${firefoxVersion}/source/firefox-${firefoxVersion}.source.tar.bz2"
|
||||||
|
];
|
||||||
|
sha1 = "3356562e69d699e5901df5a4da4e2e59dd1e7f57";
|
||||||
|
};
|
||||||
|
|
||||||
|
commonConfigureFlags =
|
||||||
|
[ "--enable-optimize"
|
||||||
|
#"--enable-profiling"
|
||||||
|
"--disable-debug"
|
||||||
|
"--enable-strip"
|
||||||
|
# "--with-system-jpeg" # Too old in nixpkgs
|
||||||
|
"--with-system-zlib"
|
||||||
|
"--with-system-bz2"
|
||||||
|
"--with-system-nspr"
|
||||||
|
# "--with-system-nss" # Too old in nixpkgs
|
||||||
|
# "--with-system-png" # <-- "--with-system-png won't work because the system's libpng doesn't have APNG support"
|
||||||
|
# "--enable-system-cairo" # disabled for the moment because our Cairo is too old
|
||||||
|
"--enable-system-sqlite"
|
||||||
|
"--disable-crashreporter"
|
||||||
|
"--disable-tests"
|
||||||
|
"--disable-necko-wifi" # maybe we want to enable this at some point
|
||||||
|
"--disable-installer"
|
||||||
|
"--disable-updater"
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
xulrunner = stdenv.mkDerivation rec {
|
||||||
|
name = "xulrunner-${xulVersion}";
|
||||||
|
|
||||||
|
inherit src;
|
||||||
|
|
||||||
|
buildInputs =
|
||||||
|
[ pkgconfig gtk perl zip libIDL libjpeg libpng zlib cairo bzip2
|
||||||
|
python dbus dbus_glib pango freetype fontconfig xlibs.libXi
|
||||||
|
xlibs.libX11 xlibs.libXrender xlibs.libXft xlibs.libXt file
|
||||||
|
alsaLib nspr nss libnotify xlibs.pixman yasm mesa
|
||||||
|
xlibs.libXScrnSaver xlibs.scrnsaverproto pysqlite
|
||||||
|
xlibs.libXext xlibs.xextproto sqlite unzip makeWrapper
|
||||||
|
];
|
||||||
|
|
||||||
|
configureFlags =
|
||||||
|
[ "--enable-application=xulrunner"
|
||||||
|
"--disable-javaxpcom"
|
||||||
|
] ++ commonConfigureFlags;
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
preConfigure =
|
||||||
|
''
|
||||||
|
export NIX_LDFLAGS="$NIX_LDFLAGS -L$out/lib/xulrunner-${xulVersion}"
|
||||||
|
|
||||||
|
mkdir ../objdir
|
||||||
|
cd ../objdir
|
||||||
|
configureScript=../mozilla-release/configure
|
||||||
|
''; # */
|
||||||
|
|
||||||
|
#installFlags = "SKIP_GRE_REGISTRATION=1";
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
# Fix run-mozilla.sh search
|
||||||
|
libDir=$(cd $out/lib && ls -d xulrunner-[0-9]*)
|
||||||
|
echo libDir: $libDir
|
||||||
|
test -n "$libDir"
|
||||||
|
cd $out/bin
|
||||||
|
rm xulrunner
|
||||||
|
|
||||||
|
for i in $out/lib/$libDir/*; do
|
||||||
|
file $i;
|
||||||
|
if file $i | grep executable &>/dev/null; then
|
||||||
|
echo -e '#! /bin/sh\nexec "'"$i"'" "$@"' > "$out/bin/$(basename "$i")";
|
||||||
|
chmod a+x "$out/bin/$(basename "$i")";
|
||||||
|
fi;
|
||||||
|
done
|
||||||
|
for i in $out/lib/$libDir/*.so; do
|
||||||
|
patchelf --set-rpath "$(patchelf --print-rpath "$i"):$out/lib/$libDir" $i || true
|
||||||
|
done
|
||||||
|
for i in $out/lib/$libDir/{plugin-container,xulrunner,xulrunner-stub}; do
|
||||||
|
wrapProgram $i --prefix LD_LIBRARY_PATH ':' "$out/lib/$libDir"
|
||||||
|
done
|
||||||
|
rm -f $out/bin/run-mozilla.sh
|
||||||
|
''; # */
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Mozilla Firefox XUL runner";
|
||||||
|
homepage = http://www.mozilla.com/en-US/firefox/;
|
||||||
|
};
|
||||||
|
|
||||||
|
passthru = { inherit gtk; version = xulVersion; };
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
firefox = stdenv.mkDerivation rec {
|
||||||
|
name = "firefox-${firefoxVersion}";
|
||||||
|
|
||||||
|
inherit src;
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
buildInputs =
|
||||||
|
[ pkgconfig gtk perl zip libIDL libjpeg zlib cairo bzip2 python
|
||||||
|
dbus dbus_glib pango freetype fontconfig alsaLib nspr nss libnotify
|
||||||
|
xlibs.pixman yasm mesa sqlite file unzip pysqlite
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [xulrunner];
|
||||||
|
|
||||||
|
configureFlags =
|
||||||
|
[ "--enable-application=browser"
|
||||||
|
"--with-libxul-sdk=${xulrunner}/lib/xulrunner-devel-${xulrunner.version}"
|
||||||
|
"--enable-chrome-format=jar"
|
||||||
|
"--disable-elf-hack"
|
||||||
|
]
|
||||||
|
++ commonConfigureFlags
|
||||||
|
++ stdenv.lib.optional enableOfficialBranding "--enable-official-branding";
|
||||||
|
|
||||||
|
makeFlags = [
|
||||||
|
"SYSTEM_LIBXUL=1"
|
||||||
|
];
|
||||||
|
|
||||||
|
# Hack to work around make's idea of -lbz2 dependency
|
||||||
|
preConfigure =
|
||||||
|
''
|
||||||
|
find . -name Makefile.in -execdir sed -i '{}' -e '1ivpath %.so ${
|
||||||
|
stdenv.lib.concatStringsSep ":"
|
||||||
|
(map (s : s + "/lib") (buildInputs ++ [stdenv.gcc.libc]))
|
||||||
|
}' ';'
|
||||||
|
'';
|
||||||
|
|
||||||
|
postInstall =
|
||||||
|
''
|
||||||
|
ln -s ${xulrunner}/lib/xulrunner-${xulrunner.version} $(echo $out/lib/firefox-*)/xulrunner
|
||||||
|
cd "$out/lib/"firefox-*
|
||||||
|
rm firefox
|
||||||
|
echo -e '#!${stdenv.shell}\nexec ${xulrunner}/bin/xulrunner "'"$PWD"'/application.ini" "$@"' > firefox
|
||||||
|
chmod a+x firefox
|
||||||
|
''; # */
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Mozilla Firefox - the browser, reloaded";
|
||||||
|
homepage = http://www.mozilla.com/en-US/firefox/;
|
||||||
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||||
|
};
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
inherit gtk xulrunner nspr;
|
||||||
|
isFirefox3Like = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -13,6 +13,7 @@
|
|||||||
, libXrender
|
, libXrender
|
||||||
, libXcursor
|
, libXcursor
|
||||||
, libXt
|
, libXt
|
||||||
|
, libvdpau
|
||||||
, gtk
|
, gtk
|
||||||
, glib
|
, glib
|
||||||
, pango
|
, pango
|
||||||
@ -78,6 +79,7 @@ stdenv.mkDerivation {
|
|||||||
rpath = stdenv.lib.makeLibraryPath
|
rpath = stdenv.lib.makeLibraryPath
|
||||||
[ zlib alsaLib curl nss nspr fontconfig freetype expat libX11
|
[ zlib alsaLib curl nss nspr fontconfig freetype expat libX11
|
||||||
libXext libXrender libXcursor libXt gtk glib pango atk cairo gdk_pixbuf
|
libXext libXrender libXcursor libXt gtk glib pango atk cairo gdk_pixbuf
|
||||||
|
libvdpau
|
||||||
];
|
];
|
||||||
|
|
||||||
buildPhase = ":";
|
buildPhase = ":";
|
||||||
|
@ -1,19 +1,19 @@
|
|||||||
{ stdenv, fetchurl, libextractor, libmicrohttpd, libgcrypt
|
{ stdenv, fetchurl, libextractor, libmicrohttpd, libgcrypt
|
||||||
, zlib, gmp, curl, libtool, adns, sqlite, pkgconfig
|
, zlib, gmp, curl, libtool, adns, sqlite, pkgconfig
|
||||||
, libxml2, ncurses, gettext, libunistring
|
, libxml2, ncurses, gettext, libunistring, libidn
|
||||||
, makeWrapper }:
|
, makeWrapper }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "gnunet-0.9.3";
|
name = "gnunet-0.9.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/gnunet/${name}.tar.gz";
|
url = "mirror://gnu/gnunet/${name}.tar.gz";
|
||||||
sha256 = "0ppirvwjb7w7270g0w83z6wyk984cnxv2ydxj7qr0j1cz2j6nn2h";
|
sha256 = "162bahbskhzc0b2pda7v36dckm3p5p9rnbv2w0fbl0xl2gln63aa";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libextractor libmicrohttpd libgcrypt gmp curl libtool
|
libextractor libmicrohttpd libgcrypt gmp curl libtool
|
||||||
zlib adns sqlite libxml2 ncurses
|
zlib adns sqlite libxml2 ncurses libidn
|
||||||
pkgconfig gettext libunistring makeWrapper
|
pkgconfig gettext libunistring makeWrapper
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -36,6 +36,10 @@ stdenv.mkDerivation rec {
|
|||||||
echo "$i: replacing references to \`/tmp' by \`$TMPDIR'..."
|
echo "$i: replacing references to \`/tmp' by \`$TMPDIR'..."
|
||||||
substituteInPlace "$i" --replace "/tmp" "$TMPDIR"
|
substituteInPlace "$i" --replace "/tmp" "$TMPDIR"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Ensure NSS installation works fine
|
||||||
|
configureFlags="$configureFlags --with-nssdir=$out/lib"
|
||||||
|
patchShebangs src/gns/nss/install-nss-plugin.sh
|
||||||
'';
|
'';
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
@ -72,7 +76,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
license = "GPLv2+";
|
license = "GPLv2+";
|
||||||
|
|
||||||
maintainers = [ stdenv.lib.maintainers.ludo ];
|
maintainers = with stdenv.lib.maintainers; [ ludo viric ];
|
||||||
platforms = stdenv.lib.platforms.gnu;
|
platforms = stdenv.lib.platforms.gnu;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,18 +1,20 @@
|
|||||||
{ fetchsvn, stdenv, autoconf, automake, pkgconfig, m4, curl,
|
{ fetchgit, stdenv, autoconf, automake, pkgconfig, m4, curl,
|
||||||
mesa, libXmu, libXi, freeglut, libjpeg, libtool, wxGTK,
|
mesa, libXmu, libXi, freeglut, libjpeg, libtool, wxGTK, xcbutil,
|
||||||
sqlite, gtk, patchelf, libXScrnSaver, libnotify, libX11 }:
|
sqlite, gtk, patchelf, libXScrnSaver, libnotify, libX11, libxcb }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "boinc-6.12.39";
|
name = "boinc-7.0.44";
|
||||||
|
|
||||||
src = fetchsvn {
|
src = fetchgit {
|
||||||
url = "http://boinc.berkeley.edu/svn/tags/boinc_core_release_6_12_39";
|
url = "git://boinc.berkeley.edu/boinc.git";
|
||||||
rev = 24341;
|
rev = "7c449b1fb8a681ceb27d6895751b62a2b3adf0f2";
|
||||||
sha256 = "158fkm4mr7wljsy8gav20km8jamf00mxjk1wsiqw6kx62bih37yb";
|
sha256 = "0hdramyl9nip3gadp7xiaz8ngyld15i93d8ai1nsd04bmrvdfqia";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libtool automake autoconf m4 pkgconfig curl mesa libXmu libXi
|
buildInputs = [ libtool automake autoconf m4 pkgconfig curl mesa libXmu libXi
|
||||||
freeglut libjpeg wxGTK sqlite gtk libXScrnSaver libnotify patchelf libX11 ];
|
freeglut libjpeg wxGTK sqlite gtk libXScrnSaver libnotify patchelf libX11
|
||||||
|
libxcb xcbutil
|
||||||
|
];
|
||||||
|
|
||||||
postConfigure = ''
|
postConfigure = ''
|
||||||
sed -i -e s,/etc,$out/etc, client/scripts/Makefile
|
sed -i -e s,/etc,$out/etc, client/scripts/Makefile
|
||||||
@ -27,17 +29,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
configureFlags = "--disable-server --disable-fast-install";
|
configureFlags = "--disable-server";
|
||||||
|
|
||||||
postInstall = "
|
|
||||||
# Remove a leading rpath to /tmp/... I don't know how it got there
|
|
||||||
# I could not manage to get rid of that through autotools.
|
|
||||||
for a in $out/bin/*; do
|
|
||||||
RPATH=$(patchelf --print-rpath $a)
|
|
||||||
NEWRPATH=$(echo $RPATH | sed 's/^[^:]*://')
|
|
||||||
patchelf --set-rpath $out/lib:$NEWRPATH $a
|
|
||||||
done
|
|
||||||
";
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Free software for distributed and grid computing";
|
description = "Free software for distributed and grid computing";
|
||||||
|
@ -12,14 +12,14 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "3.20130102";
|
version = "3.20130107";
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "git-annex-${version}";
|
name = "git-annex-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://git.kitenet.net/?p=git-annex.git;a=snapshot;sf=tgz;h=${version}";
|
url = "http://git.kitenet.net/?p=git-annex.git;a=snapshot;sf=tgz;h=${version}";
|
||||||
sha256 = "0aga3i7rzq21vyj2wq87n4yl5aljzxc69vbzw43nxx9sr2f3xyh5";
|
sha256 = "15x4rmpxv3mgp8r4gb6jana5262nvyl6rm5p8slc5z5ijl0qwbzq";
|
||||||
name = "git-annex-${version}.tar.gz";
|
name = "git-annex-${version}.tar.gz";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, lib, iasl, dev86, pam, libxslt, libxml2, libX11, xproto, libXext
|
{ stdenv, fetchurl, lib, iasl, dev86, pam, libxslt, libxml2, libX11, xproto, libXext
|
||||||
, libXcursor, libXmu, qt4, libIDL, SDL, libcap, zlib, libpng, glib, kernel
|
, libXcursor, libXmu, qt4, libIDL, SDL, libcap, zlib, libpng, glib, kernel, lvm2
|
||||||
, which, alsaLib, curl, gawk
|
, which, alsaLib, curl, gawk
|
||||||
, xorriso, makeself, perl, pkgconfig
|
, xorriso, makeself, perl, pkgconfig
|
||||||
, javaBindings ? false, jdk ? null
|
, javaBindings ? false, jdk ? null
|
||||||
@ -11,8 +11,8 @@ with stdenv.lib;
|
|||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
version = "4.2.4";
|
version = "4.2.6";
|
||||||
extpackRevision = "81684";
|
extpackRevision = "82870";
|
||||||
|
|
||||||
forEachModule = action: ''
|
forEachModule = action: ''
|
||||||
for mod in \
|
for mod in \
|
||||||
@ -35,7 +35,7 @@ let
|
|||||||
name = "Oracle_VM_VirtualBox_Extension_Pack-${version}-${extpackRevision}"
|
name = "Oracle_VM_VirtualBox_Extension_Pack-${version}-${extpackRevision}"
|
||||||
+ ".vbox-extpack";
|
+ ".vbox-extpack";
|
||||||
# Has to be base16 because it's used as an input to VBoxExtPackHelperApp!
|
# Has to be base16 because it's used as an input to VBoxExtPackHelperApp!
|
||||||
sha256 = "62078e057a4ab56aec5ac086746522b3d94787333d0444169471fa5152c609ed";
|
sha256 = "f0113688a76efa0426c27c5541c78506b18637025c35aa682ecc6eeed5d56582";
|
||||||
url = "https://www.virtualbox.org/wiki/Downloads";
|
url = "https://www.virtualbox.org/wiki/Downloads";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -44,19 +44,17 @@ in stdenv.mkDerivation {
|
|||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://download.virtualbox.org/virtualbox/${version}/VirtualBox-${version}.tar.bz2";
|
url = "http://download.virtualbox.org/virtualbox/${version}/VirtualBox-${version}.tar.bz2";
|
||||||
sha256 = "a7c607523c1c10b7b978ab39a92bb646517316548aa4a1a74b6e434ac2bf0adc";
|
sha256 = "54526091bc2aa66b88ca878dd9ecc4466f96d607db2f6678a9d673ecf6646ae3";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ iasl dev86 libxslt libxml2 xproto libX11 libXext libXcursor qt4 libIDL SDL
|
[ iasl dev86 libxslt libxml2 xproto libX11 libXext libXcursor qt4 libIDL SDL
|
||||||
libcap glib kernel python alsaLib curl pam xorriso makeself perl
|
libcap glib kernel lvm2 python alsaLib curl pam xorriso makeself perl
|
||||||
pkgconfig which libXmu ]
|
pkgconfig which libXmu ]
|
||||||
++ optional javaBindings jdk
|
++ optional javaBindings jdk
|
||||||
++ optional pythonBindings python;
|
++ optional pythonBindings python;
|
||||||
|
|
||||||
patches = [ ./remove_fa_ir.patch ];
|
prePatch = ''
|
||||||
|
|
||||||
postPatch = ''
|
|
||||||
set -x
|
set -x
|
||||||
MODULES_BUILD_DIR=`echo ${kernel}/lib/modules/*/build`
|
MODULES_BUILD_DIR=`echo ${kernel}/lib/modules/*/build`
|
||||||
sed -e 's@/lib/modules/`uname -r`/build@'$MODULES_BUILD_DIR@ \
|
sed -e 's@/lib/modules/`uname -r`/build@'$MODULES_BUILD_DIR@ \
|
||||||
|
@ -2,14 +2,14 @@
|
|||||||
, libX11, libXt, libXext, libXmu, libXcomposite, libXfixes, libXrandr, libXcursor
|
, libX11, libXt, libXext, libXmu, libXcomposite, libXfixes, libXrandr, libXcursor
|
||||||
, dbus }:
|
, dbus }:
|
||||||
|
|
||||||
let version = "4.2.4"; in
|
let version = "4.2.6"; in
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "VirtualBox-GuestAdditions-${version}-${kernel.version}";
|
name = "VirtualBox-GuestAdditions-${version}-${kernel.version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://download.virtualbox.org/virtualbox/${version}/VBoxGuestAdditions_${version}.iso";
|
url = "http://download.virtualbox.org/virtualbox/${version}/VBoxGuestAdditions_${version}.iso";
|
||||||
sha256 = "3d7d909a0fe9ac5ffcca6afdd4142b88bad116d2ffed6e95588dbfbcf00ca5e9";
|
sha256 = "1lry4hjjk8p69km1bi3mpmyarlnxz9izs2c0s8pq5rjzv1bd7bxr";
|
||||||
};
|
};
|
||||||
|
|
||||||
KERN_DIR = "${kernel}/lib/modules/*/build";
|
KERN_DIR = "${kernel}/lib/modules/*/build";
|
||||||
|
@ -1,30 +0,0 @@
|
|||||||
This patch is for VirtualBox-4.2.2, to temporarily remove references to the
|
|
||||||
fa_IR language file from the source tree, as it somehow got lost during tarball
|
|
||||||
creation. For more information on this subject please have a look at:
|
|
||||||
|
|
||||||
https://www.virtualbox.org/pipermail/vbox-dev/2012-October/005408.html
|
|
||||||
|
|
||||||
diff --git a/src/VBox/Frontends/VirtualBox/VBoxUI.pro b/src/VBox/Frontends/VirtualBox/VBoxUI.pro
|
|
||||||
index ffeb410..37ac56a 100644
|
|
||||||
--- a/src/VBox/Frontends/VirtualBox/VBoxUI.pro
|
|
||||||
+++ b/src/VBox/Frontends/VirtualBox/VBoxUI.pro
|
|
||||||
@@ -63,7 +63,6 @@ TRANSLATIONS = \
|
|
||||||
nls/VirtualBox_es.ts \
|
|
||||||
nls/VirtualBox_eu.ts \
|
|
||||||
nls/VirtualBox_fi.ts \
|
|
||||||
- nls/VirtualBox_fa_IR.ts \
|
|
||||||
nls/VirtualBox_fr.ts \
|
|
||||||
nls/VirtualBox_gl_ES.ts \
|
|
||||||
nls/VirtualBox_hu.ts \
|
|
||||||
diff --git a/src/VBox/Frontends/VirtualBox/nls/ApprovedLanguages.kmk b/src/VBox/Frontends/VirtualBox/nls/ApprovedLanguages.kmk
|
|
||||||
index 66f0ec3..2fc19b9 100644
|
|
||||||
--- a/src/VBox/Frontends/VirtualBox/nls/ApprovedLanguages.kmk
|
|
||||||
+++ b/src/VBox/Frontends/VirtualBox/nls/ApprovedLanguages.kmk
|
|
||||||
@@ -23,7 +23,6 @@ VBOX_APPROVED_GUI_LANGUAGES := \
|
|
||||||
de \
|
|
||||||
en \
|
|
||||||
es \
|
|
||||||
- fa_IR \
|
|
||||||
hu \
|
|
||||||
it \
|
|
||||||
ja \
|
|
@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "xmonad-extras";
|
pname = "xmonad-extras";
|
||||||
version = "0.10.1.2";
|
version = "0.11";
|
||||||
sha256 = "1v0yhi3sw7qks8d13amps0qs5p90j3prjh5abm02wblcd0bm1xay";
|
sha256 = "09r64z09mfdz86k7v5c6zds9ng0fjcp44kd8f5qg1sz40yblrny5";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
hint libmpd mtl network parsec random regexPosix split X11 xmonad
|
hint libmpd mtl network parsec random regexPosix split X11 xmonad
|
||||||
xmonadContrib
|
xmonadContrib
|
||||||
|
@ -1,25 +1,24 @@
|
|||||||
args : with args;
|
args: with args; rec {
|
||||||
rec {
|
name = "linux-libertine-5.3.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://downloads.sourceforge.net/linuxlibertine/5.0.0/LinLibertineSRC_2011_05_22.tgz;
|
url = mirror://sf/linuxlibertine/5.3.0/LinLibertineSRC_5.3.0_2012_07_02.tgz;
|
||||||
sha256 = "1cr0kvvlqrcmaxfl6szfp3m93mcnhmypx33dxmdm3xdxxkab74vg";
|
sha256 = "0x7cz6hvhpil1rh03rax9zsfzm54bh7r4bbrq8rz673gl9h47v0v";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [fontforge];
|
buildInputs = [ fontforge ];
|
||||||
configureFlags = [];
|
|
||||||
|
|
||||||
/* doConfigure should be specified separately */
|
/* doConfigure should be specified separately */
|
||||||
phaseNames = ["doUnpack" "generateFontsFromSFD" "installFonts"];
|
phaseNames = ["doUnpack" "generateFontsFromSFD" "installFonts"];
|
||||||
|
|
||||||
extraFontForgeCommands = ''
|
extraFontForgeCommands = ''
|
||||||
ScaleToEm(1000);
|
ScaleToEm(1000);
|
||||||
'';
|
'';
|
||||||
|
|
||||||
doUnpack = fullDepEntry ''
|
doUnpack = lib.fullDepEntry ''
|
||||||
tar xf ${src}
|
tar xf ${src}
|
||||||
'' ["minInit"];
|
'' ["minInit"];
|
||||||
|
|
||||||
name = "linux-libertine-5.0.0";
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Linux Libertine Fonts";
|
description = "Linux Libertine Fonts";
|
||||||
homepage = http://linuxlibertine.sf.net;
|
homepage = http://linuxlibertine.sf.net;
|
||||||
|
18
pkgs/desktops/xfce-4.8/applications/xfce4-notifyd.nix
Normal file
18
pkgs/desktops/xfce-4.8/applications/xfce4-notifyd.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{ stdenv, fetchurl, intltool, pkgconfig, gtk, xfce }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "xfce4-notifyd-0.2.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://archive.xfce.org/src/apps/xfce4-notifyd/0.2/${name}.tar.bz2";
|
||||||
|
sha256 = "0s4ilc36sl5k5mg5727rmqims1l3dy5pwg6dk93wyjqnqbgnhvmn";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ intltool pkgconfig gtk xfce.libxfce4util xfce.libxfce4ui xfce.xfconf ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://goodies.xfce.org/projects/applications/xfce4-notifyd;
|
||||||
|
description = "The Xfce Notify Daemon";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -73,6 +73,8 @@ rec {
|
|||||||
|
|
||||||
ristretto = callPackage ./applications/ristretto.nix { };
|
ristretto = callPackage ./applications/ristretto.nix { };
|
||||||
|
|
||||||
|
xfce4_notifyd = callPackage ./applications/xfce4-notifyd.nix { };
|
||||||
|
|
||||||
xfce4_power_manager = callPackage ./applications/xfce4-power-manager.nix { };
|
xfce4_power_manager = callPackage ./applications/xfce4-power-manager.nix { };
|
||||||
|
|
||||||
xfce4mixer = callPackage ./applications/xfce4-mixer.nix { };
|
xfce4mixer = callPackage ./applications/xfce4-mixer.nix { };
|
||||||
|
@ -4,11 +4,11 @@ let
|
|||||||
s= # Generated upstream information
|
s= # Generated upstream information
|
||||||
rec {
|
rec {
|
||||||
baseName="sbcl";
|
baseName="sbcl";
|
||||||
version="1.1.2";
|
version="1.1.3";
|
||||||
name="sbcl-1.1.2";
|
name="${baseName}-${version}";
|
||||||
hash="04vp68cf0jfpjwx64iys7hi7qxbk2h7277wiym7k4jgirka08yhc";
|
hash="1qy64fy0nvjdgzlmasswgvzg1b2h2rygnnjvlf9vj7wg16i5383i";
|
||||||
url="mirror://sourceforge/project/sbcl/sbcl/1.1.2/sbcl-1.1.2-source.tar.bz2";
|
url="mirror://sourceforge/project/sbcl/sbcl/1.1.3/sbcl-1.1.3-source.tar.bz2";
|
||||||
sha256="04vp68cf0jfpjwx64iys7hi7qxbk2h7277wiym7k4jgirka08yhc";
|
sha256="1qy64fy0nvjdgzlmasswgvzg1b2h2rygnnjvlf9vj7wg16i5383i";
|
||||||
};
|
};
|
||||||
buildInputs = with a; [
|
buildInputs = with a; [
|
||||||
clisp makeWrapper
|
clisp makeWrapper
|
||||||
|
@ -9,11 +9,13 @@ with stdenv.lib;
|
|||||||
let
|
let
|
||||||
|
|
||||||
majorVersion = "2.6";
|
majorVersion = "2.6";
|
||||||
version = "${majorVersion}.7";
|
version = "${majorVersion}.8";
|
||||||
|
|
||||||
|
# http://www.python.org/download/releases/2.6.8/
|
||||||
|
# md5 taken from webpage, python 2.6 will receive security fixes until Oct 2013
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.bz2";
|
url = "http://www.python.org/ftp/python/${version}/Python-${version}.tar.bz2";
|
||||||
sha256 = "0p0fd8i533zsdm6gc0jmhmdifccx4v064mh0i1hl2s6fcjhc20j5";
|
md5 = "c6e0420a21d8b23dee8b0195c9b9a125";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches =
|
patches =
|
||||||
@ -51,6 +53,10 @@ let
|
|||||||
for i in /usr /sw /opt /pkg; do
|
for i in /usr /sw /opt /pkg; do
|
||||||
substituteInPlace ./setup.py --replace $i /no-such-path
|
substituteInPlace ./setup.py --replace $i /no-such-path
|
||||||
done
|
done
|
||||||
|
'' + optionalString (stdenv ? gcc && stdenv.gcc.libc != null) ''
|
||||||
|
for i in Lib/plat-*/regen; do
|
||||||
|
substituteInPlace $i --replace /usr/include/ ${stdenv.gcc.libc}/include/
|
||||||
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = optionalString stdenv.isDarwin "-msse2";
|
NIX_CFLAGS_COMPILE = optionalString stdenv.isDarwin "-msse2";
|
||||||
|
@ -2,9 +2,10 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "active";
|
pname = "active";
|
||||||
version = "0.1.0.2";
|
version = "0.1.0.3";
|
||||||
sha256 = "1iymh3sd21ba7ijwv5afphn5vhmwchk6725hbcsdwk2d2x2gd674";
|
sha256 = "0jarc270z6raak1vz30jy2gl0pkj9a2x3ib5hq7vsl2ljbvbgyqi";
|
||||||
buildDepends = [ newtype semigroupoids semigroups vectorSpace ];
|
buildDepends = [ newtype semigroupoids semigroups vectorSpace ];
|
||||||
|
jailbreak = true;
|
||||||
meta = {
|
meta = {
|
||||||
description = "Abstractions for animation";
|
description = "Abstractions for animation";
|
||||||
license = self.stdenv.lib.licenses.bsd3;
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "comonad-transformers";
|
pname = "comonad-transformers";
|
||||||
version = "3.0";
|
version = "3.0.1";
|
||||||
sha256 = "1bjix61rdzmqcd1irh6p91jwy4sz1617sj4zic07p7ng9h7fsz24";
|
sha256 = "1lmcz01zsgy0lfzsznqbdq83vlk6h10zs7i41nav8qhzzhjn095j";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
comonad contravariant distributive semigroupoids semigroups
|
comonad contravariant distributive semigroupoids semigroups
|
||||||
transformers
|
transformers
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "comonad";
|
pname = "comonad";
|
||||||
version = "3.0.0.2";
|
version = "3.0.1.1";
|
||||||
sha256 = "01q71b446mdbdj81qjrxjl5bshbg4bjih5zpw9fd4y5431bclfhi";
|
sha256 = "01zqxrqxy6x6nf6rynzmncbhlgbbpshhw10pkimnw5isg3b8qhc2";
|
||||||
buildDepends = [ semigroups transformers ];
|
buildDepends = [ semigroups transformers ];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://github.com/ekmett/comonad/";
|
homepage = "http://github.com/ekmett/comonad/";
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "comonads-fd";
|
pname = "comonads-fd";
|
||||||
version = "3.0";
|
version = "3.0.1";
|
||||||
sha256 = "1j5ymj711c49fsk2ilxfpzqr0jr117z8kb5ggyh5nlwjy16m32in";
|
sha256 = "0ap9sw7h130bza43091mbl9a5bsin6342zawgycdcsag49wm3dyy";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
comonad comonadTransformers mtl semigroups transformers
|
comonad comonadTransformers mtl semigroups transformers
|
||||||
];
|
];
|
||||||
|
@ -4,12 +4,13 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "diagrams-core";
|
pname = "diagrams-core";
|
||||||
version = "0.6";
|
version = "0.6.0.1";
|
||||||
sha256 = "15frd5jdzkgpdcvyyhd0mbi5d4a69ajcnxawa1gafl4c3byz1778";
|
sha256 = "0kw0rxk9a2zkpnbx4bfd0japm75y29ldvdn7i3c93kvz0p6jc2wa";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
dualTree MemoTrie monoidExtras newtype semigroups vectorSpace
|
dualTree MemoTrie monoidExtras newtype semigroups vectorSpace
|
||||||
vectorSpacePoints
|
vectorSpacePoints
|
||||||
];
|
];
|
||||||
|
jailbreak = true;
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://projects.haskell.org/diagrams";
|
homepage = "http://projects.haskell.org/diagrams";
|
||||||
description = "Core libraries for diagrams EDSL";
|
description = "Core libraries for diagrams EDSL";
|
||||||
|
@ -4,12 +4,13 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "diagrams-lib";
|
pname = "diagrams-lib";
|
||||||
version = "0.6";
|
version = "0.6.0.1";
|
||||||
sha256 = "05nfp5ggjk4fviwvwiblmzzw5dbzbi1w8dx5dimvah7wxb0km3lf";
|
sha256 = "00ysdppl2jv0kspj0pjy8qj8shc9gg6g10lkq62vlvr39wnxx6yj";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
active colour dataDefault diagramsCore monoidExtras newtype
|
active colour dataDefault diagramsCore monoidExtras newtype
|
||||||
NumInstances semigroups vectorSpace
|
NumInstances semigroups vectorSpace
|
||||||
];
|
];
|
||||||
|
jailbreak = true;
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://projects.haskell.org/diagrams";
|
homepage = "http://projects.haskell.org/diagrams";
|
||||||
description = "Embedded domain-specific language for declarative graphics";
|
description = "Embedded domain-specific language for declarative graphics";
|
||||||
|
@ -0,0 +1,14 @@
|
|||||||
|
{ cabal, numtypeTf, time }:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "dimensional-tf";
|
||||||
|
version = "0.1.1";
|
||||||
|
sha256 = "0hhp2nx8xyk5ms3mzg1d3jhzm1b0bxz7aijxqasrxjq9p04jr2ci";
|
||||||
|
buildDepends = [ numtypeTf time ];
|
||||||
|
meta = {
|
||||||
|
homepage = "http://dimensional.googlecode.com/";
|
||||||
|
description = "Statically checked physical dimensions, implemented using type families";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
})
|
@ -1,10 +1,10 @@
|
|||||||
{ cabal, transformers }:
|
{ cabal, transformers, transformersCompat }:
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "distributive";
|
pname = "distributive";
|
||||||
version = "0.2.2";
|
version = "0.3";
|
||||||
sha256 = "13wvr2wb3h2nr1qd3dwjqx0b6g4igjqm3q2cyi4mc41gwihkbhr2";
|
sha256 = "0z6vwak2n91vpx9ps9j1pbiw0zlh9jmds84yx1yqssbqx8npi32f";
|
||||||
buildDepends = [ transformers ];
|
buildDepends = [ transformers transformersCompat ];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://github.com/ekmett/distributive/";
|
homepage = "http://github.com/ekmett/distributive/";
|
||||||
description = "Haskell 98 Distributive functors -- Dual to Traversable";
|
description = "Haskell 98 Distributive functors -- Dual to Traversable";
|
||||||
|
@ -2,9 +2,10 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "dual-tree";
|
pname = "dual-tree";
|
||||||
version = "0.1.0.0";
|
version = "0.1.0.1";
|
||||||
sha256 = "0av525gjxzd2hhrg5da647chwbv4j30gccaff2b3n5qijzy8l167";
|
sha256 = "09bdid65frccpbh1bs01f7vprq0vfgqsb5bfa4j8yi3q773mycb2";
|
||||||
buildDepends = [ monoidExtras newtype semigroups ];
|
buildDepends = [ monoidExtras newtype semigroups ];
|
||||||
|
jailbreak = true;
|
||||||
meta = {
|
meta = {
|
||||||
description = "Rose trees with cached and accumulating monoidal annotations";
|
description = "Rose trees with cached and accumulating monoidal annotations";
|
||||||
license = self.stdenv.lib.licenses.bsd3;
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "either";
|
pname = "either";
|
||||||
version = "3.0.2";
|
version = "3.0.3";
|
||||||
sha256 = "1s3rpxxqc9052hrmiznwqwxhl4826qzbgpivpv5acxfhm0w06lhg";
|
sha256 = "02kpb8xd19n00ll61haqr6k3hy8qmbdf73gr4zs59q9xh0739qxc";
|
||||||
buildDepends = [ semigroupoids semigroups transformers ];
|
buildDepends = [ semigroupoids semigroups transformers ];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://github.com/ekmett/either/";
|
homepage = "http://github.com/ekmett/either/";
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "fsnotify";
|
pname = "fsnotify";
|
||||||
version = "0.0.5";
|
version = "0.0.6";
|
||||||
sha256 = "1pi1dpm48igcc8n5cn8hdml8bknxl18kqhjbh6jan839fgmwagb9";
|
sha256 = "0ib6ansj3vaq9hxxbsq5jw14w2b61wp4jfahzb3c3x46mdb1bqw5";
|
||||||
buildDepends = [ hinotify systemFileio systemFilepath text time ];
|
buildDepends = [ hinotify systemFileio systemFilepath text time ];
|
||||||
meta = {
|
meta = {
|
||||||
description = "Cross platform library for file creation, modification, and deletion notification";
|
description = "Cross platform library for file creation, modification, and deletion notification";
|
||||||
|
@ -5,14 +5,13 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "hakyll";
|
pname = "hakyll";
|
||||||
version = "3.5.2.0";
|
version = "3.5.2.1";
|
||||||
sha256 = "088qhzycpz003qa4b7hnn6frgmidk6219icii04ap964fkw0mqn0";
|
sha256 = "1fp7jak2sfznvg3lfyjqy13m1iq9821mdq6n5qmqz5dh5b960iv4";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
binary blazeHtml blazeMarkup citeprocHs cryptohash filepath hamlet
|
binary blazeHtml blazeMarkup citeprocHs cryptohash filepath hamlet
|
||||||
lrucache mtl pandoc parsec regexBase regexTdfa snapCore snapServer
|
lrucache mtl pandoc parsec regexBase regexTdfa snapCore snapServer
|
||||||
tagsoup text time
|
tagsoup text time
|
||||||
];
|
];
|
||||||
jailbreak = true;
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://jaspervdj.be/hakyll";
|
homepage = "http://jaspervdj.be/hakyll";
|
||||||
description = "A static website compiler library";
|
description = "A static website compiler library";
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "hashable";
|
pname = "hashable";
|
||||||
version = "1.2.0.2";
|
version = "1.2.0.3";
|
||||||
sha256 = "1l827sh7v2jls2gcbxgbvz5hacwi43bcrxwmd3wp92hfwy1yza65";
|
sha256 = "0q4zl2mry6qfp9vln6pxmgqik7szv1sh7if55gydnxln1ybvvgmp";
|
||||||
buildDepends = [ text ];
|
buildDepends = [ text ];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://github.com/tibbe/hashable";
|
homepage = "http://github.com/tibbe/hashable";
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "highlighting-kate";
|
pname = "highlighting-kate";
|
||||||
version = "0.5.3.3";
|
version = "0.5.3.4";
|
||||||
sha256 = "08jxl2ba0kb4vj1qbdf4sas8bwbxzayzwsxnjvq358x57i5l302n";
|
sha256 = "1xm9dr71qna1w65vzaf63hbchpvshfjvvs5038sy04x2ddwdix77";
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
buildDepends = [ blazeHtml filepath mtl parsec regexPcre ];
|
buildDepends = [ blazeHtml filepath mtl parsec regexPcre ];
|
||||||
|
@ -8,8 +8,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "http-conduit";
|
pname = "http-conduit";
|
||||||
version = "1.8.6.1";
|
version = "1.8.6.2";
|
||||||
sha256 = "1vkfld5kn8fql78mw8zwsp524m07kr4a10c411rzpv6xqx92azy7";
|
sha256 = "0b9iw8gq0kyfmnpv1jba2dx8rik9136zx5q9xdyvy0lczdgb8i09";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
asn1Data attoparsec attoparsecConduit base64Bytestring blazeBuilder
|
asn1Data attoparsec attoparsecConduit base64Bytestring blazeBuilder
|
||||||
blazeBuilderConduit caseInsensitive certificate conduit cookie
|
blazeBuilderConduit caseInsensitive certificate conduit cookie
|
||||||
|
@ -5,8 +5,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "http-reverse-proxy";
|
pname = "http-reverse-proxy";
|
||||||
version = "0.1.1";
|
version = "0.1.1.1";
|
||||||
sha256 = "0p04zpw1v0zhzri7wpikc0b8g7n21kgl8j8238vv7xqxapkal0pc";
|
sha256 = "0xg6xw0j61db75smys2fgjn0nzv2dy8c1ha4m828ssnxlic98lk2";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
blazeBuilder caseInsensitive classyPreludeConduit conduit
|
blazeBuilder caseInsensitive classyPreludeConduit conduit
|
||||||
dataDefault httpConduit httpTypes liftedBase monadControl network
|
dataDefault httpConduit httpTypes liftedBase monadControl network
|
||||||
|
@ -1,17 +1,20 @@
|
|||||||
{ cabal, comonad, comonadsFd, comonadTransformers, filepath
|
{ cabal, comonad, comonadsFd, comonadTransformers, filepath
|
||||||
, hashable, mtl, parallel, semigroups, split, text, transformers
|
, hashable, mtl, nats, parallel, semigroups, split, text
|
||||||
, unorderedContainers, vector
|
, transformers, transformersCompat, unorderedContainers, vector
|
||||||
}:
|
}:
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "lens";
|
pname = "lens";
|
||||||
version = "3.7.1.2";
|
version = "3.7.3";
|
||||||
sha256 = "1hapcnmyqyc3645gsy1ikwzm2srbbznps6yrfr02y2lcbnjpn3g6";
|
sha256 = "0mvwczviszfv52ylymvrz3zk6s05ngmqc2g1k4r6pym8s9cmgmzz";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
comonad comonadsFd comonadTransformers filepath hashable mtl
|
comonad comonadsFd comonadTransformers filepath hashable mtl nats
|
||||||
parallel semigroups split text transformers unorderedContainers
|
parallel semigroups split text transformers transformersCompat
|
||||||
vector
|
unorderedContainers vector
|
||||||
];
|
];
|
||||||
|
patchPhase = ''
|
||||||
|
sed -i -e 's|semigroups.*,|semigroups,|' lens.cabal
|
||||||
|
'';
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://github.com/ekmett/lens/";
|
homepage = "http://github.com/ekmett/lens/";
|
||||||
description = "Lenses, Folds and Traversals";
|
description = "Lenses, Folds and Traversals";
|
||||||
|
@ -2,9 +2,10 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "monoid-extras";
|
pname = "monoid-extras";
|
||||||
version = "0.2.2.1";
|
version = "0.2.2.2";
|
||||||
sha256 = "0n2zwkwwq8kg9m6qr79mrhlxsfsrjzbyg96gfhcgk21zgc09zary";
|
sha256 = "1fz93hm0sswisvwvbygxvbwmmnzqcxmz9h82i4361wzychf2si22";
|
||||||
buildDepends = [ semigroups ];
|
buildDepends = [ semigroups ];
|
||||||
|
jailbreak = true;
|
||||||
meta = {
|
meta = {
|
||||||
description = "Various extra monoid-related definitions and utilities";
|
description = "Various extra monoid-related definitions and utilities";
|
||||||
license = self.stdenv.lib.licenses.bsd3;
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "multiarg";
|
pname = "multiarg";
|
||||||
version = "0.6.0.0";
|
version = "0.8.0.0";
|
||||||
sha256 = "1qrw1rajdvrvd297a7lpfkxm5qqhwmnnl5jiagjwzb9lckgpy87y";
|
sha256 = "17zfrm9zjf7c8g7q9vqj1srk0g766ifhwqp7gm4ql890541q5lv5";
|
||||||
buildDepends = [ explicitException utf8String ];
|
buildDepends = [ explicitException utf8String ];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/massysett/multiarg";
|
homepage = "https://github.com/massysett/multiarg";
|
||||||
description = "Combinators to build command line parsers";
|
description = "Combinators to build command line parsers";
|
||||||
license = self.stdenv.lib.licenses.mit;
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
platforms = self.ghc.meta.platforms;
|
platforms = self.ghc.meta.platforms;
|
||||||
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||||||
};
|
};
|
||||||
|
12
pkgs/development/libraries/haskell/nat/default.nix
Normal file
12
pkgs/development/libraries/haskell/nat/default.nix
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{ cabal }:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "nat";
|
||||||
|
version = "0.3";
|
||||||
|
sha256 = "1v43c1dr72qn8mymnwcq6an8sqxjaxhac037k4gbv8z8bg18zmf5";
|
||||||
|
meta = {
|
||||||
|
description = "Lazy binary natural numbers";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
})
|
13
pkgs/development/libraries/haskell/nats/default.nix
Normal file
13
pkgs/development/libraries/haskell/nats/default.nix
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{ cabal }:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "nats";
|
||||||
|
version = "0.1";
|
||||||
|
sha256 = "08gh7jjmws70919hmqqmvnfqcpxr34f03jmg3lzmmhqvr15gm1vy";
|
||||||
|
meta = {
|
||||||
|
homepage = "http://github.com/ekmett/nats/";
|
||||||
|
description = "Haskell 98 natural numbers";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
})
|
13
pkgs/development/libraries/haskell/naturals/default.nix
Normal file
13
pkgs/development/libraries/haskell/naturals/default.nix
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{ cabal }:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "naturals";
|
||||||
|
version = "0.2.0.2";
|
||||||
|
sha256 = "1ay291833dcah411zc3r4qjilaw8x13ljlnb5z40d1s7784djm16";
|
||||||
|
meta = {
|
||||||
|
homepage = "frigidcode.com";
|
||||||
|
description = "Constructors and related functions for natural numbers";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
})
|
@ -3,8 +3,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "network-conduit";
|
pname = "network-conduit";
|
||||||
version = "0.6.2.1";
|
version = "0.6.2.2";
|
||||||
sha256 = "1pkqkkj18yn31dmxcc8xfq2drg2jm9169my0s3jsxjbyxsyq58l6";
|
sha256 = "1v8abhw977hr78hkshrbxy04abbbhafvvnhr4xxgqc0phwch02mc";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
conduit liftedBase monadControl network transformers
|
conduit liftedBase monadControl network transformers
|
||||||
];
|
];
|
||||||
|
13
pkgs/development/libraries/haskell/numtype-tf/default.nix
Normal file
13
pkgs/development/libraries/haskell/numtype-tf/default.nix
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{ cabal }:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "numtype-tf";
|
||||||
|
version = "0.1";
|
||||||
|
sha256 = "1hvnqgjg7yifxdsji9v0wqwbp4syhdc97pa3nrn4p96g7kmvw25v";
|
||||||
|
meta = {
|
||||||
|
homepage = "http://dimensional.googlecode.com/";
|
||||||
|
description = "Type-level (low cardinality) integers, implemented using type families";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
})
|
@ -1,15 +1,15 @@
|
|||||||
{ cabal, haskellLexer }:
|
{ cabal, filepath, haskellLexer }:
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "pretty-show";
|
pname = "pretty-show";
|
||||||
version = "1.3.2";
|
version = "1.5";
|
||||||
sha256 = "0m3kw4d68gd1mhlgi5vy3k2cqi9f0i4s502m2sgy4pww45fjllxy";
|
sha256 = "1n04f9aypgbhkq0lbji9czv1mjfwv4f80w1c6hqs55gmzwif63m4";
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
buildDepends = [ haskellLexer ];
|
buildDepends = [ filepath haskellLexer ];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://wiki.github.com/yav/pretty-show";
|
homepage = "http://wiki.github.com/yav/pretty-show";
|
||||||
description = "Tools for working with derived Show instances";
|
description = "Tools for working with derived `Show` instances and generic inspection of values";
|
||||||
license = self.stdenv.lib.licenses.bsd3;
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
platforms = self.ghc.meta.platforms;
|
platforms = self.ghc.meta.platforms;
|
||||||
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "semigroupoids";
|
pname = "semigroupoids";
|
||||||
version = "3.0.0.1";
|
version = "3.0.1";
|
||||||
sha256 = "0ilqmpywiwp9m1k8lrw0mxb0pzc9l8bs2hgzrp8k5iln1yq1fh6i";
|
sha256 = "12k2yryr31lxhwq42cx05kswljmbli8p8c2wknigzkkam63d8k5h";
|
||||||
buildDepends = [ comonad contravariant semigroups transformers ];
|
buildDepends = [ comonad contravariant semigroups transformers ];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://github.com/ekmett/semigroupoids";
|
homepage = "http://github.com/ekmett/semigroupoids";
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
{ cabal }:
|
{ cabal, nats }:
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "semigroups";
|
pname = "semigroups";
|
||||||
version = "0.8.5";
|
version = "0.9";
|
||||||
sha256 = "0dnxqqxfyxj0mpy524nvgwagsp6ynadmh2yr4k5159rzbg2xgz90";
|
sha256 = "0cwyjjlr9zgpxryzdf26pb58dmad0cp8d0493rarhh5zmgighh90";
|
||||||
|
buildDepends = [ nats ];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://github.com/ekmett/semigroups/";
|
homepage = "http://github.com/ekmett/semigroups/";
|
||||||
description = "Haskell 98 semigroups";
|
description = "Haskell 98 semigroups";
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "texmath";
|
pname = "texmath";
|
||||||
version = "0.6.1.1";
|
version = "0.6.1.2";
|
||||||
sha256 = "06yk19jvpj7di1njybk1hdc7hp6c9h3yb4gvi7ljna6wqrh6zqaz";
|
sha256 = "1izsjy30saz2il16dwx8sh2s30b1pfgcpq6023v135w1bdrzrnmq";
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
buildDepends = [ parsec syb xml ];
|
buildDepends = [ parsec syb xml ];
|
||||||
|
@ -0,0 +1,15 @@
|
|||||||
|
{ cabal, transformers }:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "transformers-compat";
|
||||||
|
version = "0.1";
|
||||||
|
sha256 = "100xw00h2l6iipg6lq5bbncpil3bl6w3frak99klpi8gn6ihd8ah";
|
||||||
|
buildDepends = [ transformers ];
|
||||||
|
noHaddock = true;
|
||||||
|
meta = {
|
||||||
|
homepage = "http://github.com/ekmett/transformers-compat/";
|
||||||
|
description = "Lenses, Folds and Traversals";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
})
|
@ -0,0 +1,12 @@
|
|||||||
|
{ cabal }:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "type-level-natural-number";
|
||||||
|
version = "1.1.1";
|
||||||
|
sha256 = "1zc26nckpcixxp1m818jhzi3dj1ysnjfc2xliq4rpmf5583k6mjw";
|
||||||
|
meta = {
|
||||||
|
description = "Simple, Haskell 2010-compatible type level natural numbers";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
})
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "uu-parsinglib";
|
pname = "uu-parsinglib";
|
||||||
version = "2.7.4";
|
version = "2.7.4.1";
|
||||||
sha256 = "1cznyn09a3glfkvvzqma3bhjinddkp6v2xwiy5x403v0wy8y565j";
|
sha256 = "1aya95j7dd0yal0ygy6d4w4wmlhgn5ddy3c5f6ncl4k3kg7hjxd1";
|
||||||
buildDepends = [ ListLike time ];
|
buildDepends = [ ListLike time ];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://www.cs.uu.nl/wiki/bin/view/HUT/ParserCombinators";
|
homepage = "http://www.cs.uu.nl/wiki/bin/view/HUT/ParserCombinators";
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "void";
|
pname = "void";
|
||||||
version = "0.5.10";
|
version = "0.5.11";
|
||||||
sha256 = "0adykqns7vvzgrjg7waaklfj3dl1h7vk5rwlfx0f18js6di9zrh4";
|
sha256 = "0fi8ccnhg0ckz5v3cgxhdd67p0v3g9yawin917ik4vxfbwz5j3v6";
|
||||||
buildDepends = [ semigroups ];
|
buildDepends = [ semigroups ];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://github.com/ekmett/void";
|
homepage = "http://github.com/ekmett/void";
|
||||||
|
@ -5,8 +5,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "warp";
|
pname = "warp";
|
||||||
version = "1.3.6";
|
version = "1.3.7";
|
||||||
sha256 = "0aw5m7apj7l6fjb0w59bmgiy4j0rmdwjil4ppgp5qz2q2njqbbnj";
|
sha256 = "06648wqiwlcsvd41qdqdbgn1zcq890iq39zsxi24vf4s8q7jnzyf";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
blazeBuilder blazeBuilderConduit caseInsensitive conduit hashable
|
blazeBuilder blazeBuilderConduit caseInsensitive conduit hashable
|
||||||
httpTypes liftedBase network networkConduit simpleSendfile
|
httpTypes liftedBase network networkConduit simpleSendfile
|
||||||
|
@ -0,0 +1,13 @@
|
|||||||
|
diff -ubr wxc-0.90.0.4-orig/src/cpp/eljpen.cpp wxc-0.90.0.4/src/cpp/eljpen.cpp
|
||||||
|
--- wxc-0.90.0.4-orig/src/cpp/eljpen.cpp 2012-07-03 12:12:17.000000000 +0200
|
||||||
|
+++ wxc-0.90.0.4/src/cpp/eljpen.cpp 2013-01-07 12:09:50.296417007 +0100
|
||||||
|
@@ -156,7 +156,7 @@
|
||||||
|
EWXWEXPORT(void,wxPen_GetStipple)(void* self,wxBitmap* _ref)
|
||||||
|
{
|
||||||
|
#if defined(__WXGTK__)
|
||||||
|
- *_ref = NULL;
|
||||||
|
+ _ref = NULL;
|
||||||
|
#else
|
||||||
|
*_ref = *(((wxPen*)self)->GetStipple());
|
||||||
|
#endif
|
||||||
|
Only in wxc-0.90.0.4/src/cpp: eljpen.cpp.orig
|
@ -10,7 +10,7 @@ cabal.mkDerivation (self: {
|
|||||||
postInstall = ''
|
postInstall = ''
|
||||||
cp -v dist/build/libwxc.so.${self.version} $out/lib/libwxc.so
|
cp -v dist/build/libwxc.so.${self.version} $out/lib/libwxc.so
|
||||||
'';
|
'';
|
||||||
|
patches = [ ./fix-bogus-pointer-assignment.patch ];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://haskell.org/haskellwiki/WxHaskell";
|
homepage = "http://haskell.org/haskellwiki/WxHaskell";
|
||||||
description = "wxHaskell C++ wrapper";
|
description = "wxHaskell C++ wrapper";
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
{stdenv, fetchurl, curl}:
|
{stdenv, fetchurl, curl}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libmicrohttpd-0.9.9";
|
name = "libmicrohttpd-0.9.24";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/libmicrohttpd/${name}.tar.gz";
|
url = "mirror://gnu/libmicrohttpd/${name}.tar.gz";
|
||||||
sha256 = "0059isy80cmxv44dhngnsc4g25kwxdcfis5yrva199r0vnb8ab6c";
|
sha256 = "0cp2ac6wbk493zslbvbmb5z96h18k496f9id8d2ji7hbdrwzfk6h";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ curl ];
|
buildInputs = [ curl ];
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, libX11 }:
|
{ stdenv, fetchurl, pkgconfig, libX11 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libvdpau-0.4.1";
|
name = "libvdpau-0.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
|
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
|
||||||
sha256 = "16zmmbawfnvrxjqvgfwxjfd1wh3vyz2cmvxza6cgf4j9qs36y6q6";
|
sha256 = "0k2ydz4yp7zynlkpd1llfwax30xndwbca36z83ah1i4ldjw2gfhx";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig libX11 ];
|
buildInputs = [ pkgconfig libX11 ];
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
{stdenv, fetchurl, unzip, ogre, cmake, ois, freetype, libuuid, boost}:
|
{stdenv, fetchurl, unzip, ogre, cmake, ois, freetype, libuuid, boost, pkgconfig}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "mygui-3.0.1";
|
name = "mygui-3.2.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/my-gui/MyGUI_3.0.1_source.zip;
|
url = mirror://sourceforge/my-gui/MyGUI_3.2.0.zip;
|
||||||
sha256 = "1n56kl8ykzgv4k2nm9317jg9b9x2qa3l9hamz11hzn1qqjn2z4ig";
|
sha256 = "16m1xrhx13qbwnp9gds2amlwycq8q5npr0665hnknwsb6rph010p";
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
buildInputs = [ unzip ogre cmake ois freetype libuuid boost ];
|
buildInputs = [ unzip ogre cmake ois freetype libuuid boost pkgconfig ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://mygui.info/;
|
homepage = http://mygui.info/;
|
||||||
|
@ -8,11 +8,11 @@
|
|||||||
, nvidia_cg_toolkit }:
|
, nvidia_cg_toolkit }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "ogre-1.7.2";
|
name = "ogre-1.8.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/ogre/1.7/ogre_src_v1-7-2.tar.bz2";
|
url = "mirror://sourceforge/ogre/1.8.1/ogre_src_v1-8-1.tar.bz2";
|
||||||
sha256 = "10q8jx842s4aws9py6q67rb4dh5vli5vvg54jl8manjb4f388jh5";
|
sha256 = "1avadx87sdfdk8165wlffnd5dzks694dcdnkg3ijap966k4qm46s";
|
||||||
};
|
};
|
||||||
|
|
||||||
cmakeFlags = [ "-DOGRE_INSTALL_SAMPLES=yes" ]
|
cmakeFlags = [ "-DOGRE_INSTALL_SAMPLES=yes" ]
|
||||||
|
@ -37,7 +37,11 @@ stdenv.mkDerivation rec {
|
|||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
mkdir -p $out/lib
|
mkdir -p $out/lib
|
||||||
mv -v out/${arch}.release/d8 $out/bin
|
mv -v out/${arch}.release/d8 $out/bin
|
||||||
mv -v out/${arch}.release/lib.target/libv8.so $out/lib
|
|
||||||
|
${if stdenv.system == "x86_64-darwin" then
|
||||||
|
"mv -v out/${arch}.release/libv8.dylib $out/lib"
|
||||||
|
else
|
||||||
|
"mv -v out/${arch}.release/lib.target/libv8.so $out/lib"}
|
||||||
mv -v include $out/
|
mv -v include $out/
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
87
pkgs/development/mobile/titaniumenv/build-app.nix
Normal file
87
pkgs/development/mobile/titaniumenv/build-app.nix
Normal file
@ -0,0 +1,87 @@
|
|||||||
|
{stdenv, androidsdk, titaniumsdk, xcodewrapper}:
|
||||||
|
{ appId, name, src, target, androidPlatformVersions ? [ "8" ]
|
||||||
|
, release ? false, androidKeyStore ? null, androidKeyAlias ? null, androidKeyStorePassword ? null
|
||||||
|
, iosKeyFile ? null, iosCertificateName ? null, iosCertificate ? null, iosCertificatePassword ? null
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert (release && target == "android") -> androidKeyStore != null && androidKeyAlias != null && androidKeyStorePassword != null;
|
||||||
|
assert (release && target == "iphone") -> iosKeyFile != null && iosCertificateName != null && iosCertificate != null && iosCertificatePassword != null;
|
||||||
|
|
||||||
|
let
|
||||||
|
androidsdkComposition = androidsdk {
|
||||||
|
platformVersions = androidPlatformVersions;
|
||||||
|
useGoogleAPIs = true;
|
||||||
|
};
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
inherit name src;
|
||||||
|
|
||||||
|
buildInputs = [] ++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") xcodewrapper;
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
export HOME=$TMPDIR
|
||||||
|
|
||||||
|
mkdir -p $out
|
||||||
|
|
||||||
|
${if target == "android" then
|
||||||
|
if release then
|
||||||
|
"${titaniumsdk}/mobilesdk/*/*/android/builder.py distribute ${name} ${androidsdkComposition}/libexec/android-sdk-* $(pwd) ${appId} ${androidKeyStore} ${androidKeyStorePassword} ${androidKeyAlias} $out"
|
||||||
|
else
|
||||||
|
"${titaniumsdk}/mobilesdk/*/*/android/builder.py build ${name} ${androidsdkComposition}/libexec/android-sdk-* $(pwd) ${appId}"
|
||||||
|
|
||||||
|
else if target == "iphone" then
|
||||||
|
if release then
|
||||||
|
''
|
||||||
|
export HOME=/Users/$(whoami)
|
||||||
|
export keychainName=$(basename $out)
|
||||||
|
|
||||||
|
# Create a keychain with the component hash name (should always be unique)
|
||||||
|
security create-keychain -p "" $keychainName
|
||||||
|
security default-keychain -s $keychainName
|
||||||
|
security unlock-keychain -p "" $keychainName
|
||||||
|
security import ${iosCertificate} -k $keychainName -P "${iosCertificatePassword}" -A
|
||||||
|
|
||||||
|
provisioningId=$(grep UUID -A1 -a ${iosKeyFile} | grep -o "[-A-Z0-9]\{36\}")
|
||||||
|
|
||||||
|
# Ensure that the requested provisioning profile can be found
|
||||||
|
|
||||||
|
if [ ! -f "$HOME/Library/MobileDevice/Provisioning Profiles" ]
|
||||||
|
then
|
||||||
|
mkdir -p "$HOME/Library/MobileDevice/Provisioning Profiles"
|
||||||
|
cp ${iosKeyFile} "$HOME/Library/MobileDevice/Provisioning Profiles/$provisioningId.mobileprovision"
|
||||||
|
fi
|
||||||
|
|
||||||
|
${titaniumsdk}/mobilesdk/*/*/iphone/builder.py adhoc 6.0 $(pwd) ${appId} ${name} "$provisioningId" "${iosCertificateName}" universal "$HOME/Library/Keychains/$keychainName"
|
||||||
|
|
||||||
|
# Remove our generated keychain
|
||||||
|
|
||||||
|
security delete-keychain $keychainName
|
||||||
|
''
|
||||||
|
else
|
||||||
|
''
|
||||||
|
# Copy all sources to the output store directory.
|
||||||
|
# Why? Debug application include *.js files, which are symlinked into their
|
||||||
|
# sources. If they are not copied, we have dangling references to the
|
||||||
|
# temp folder.
|
||||||
|
|
||||||
|
cp -av * $out
|
||||||
|
cd $out
|
||||||
|
${titaniumsdk}/mobilesdk/*/*/iphone/builder.py build 6.0 $(pwd) ${appId} ${name}
|
||||||
|
''
|
||||||
|
|
||||||
|
else throw "Target: ${target} is not supported!"}
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out
|
||||||
|
|
||||||
|
${if target == "android" && release then ""
|
||||||
|
else
|
||||||
|
if target == "android" then
|
||||||
|
''cp $(ls build/android/bin/*.apk | grep -v '\-unsigned.apk') $out''
|
||||||
|
else if target == "iphone" && release then
|
||||||
|
"cp -av build/iphone/build/* $out"
|
||||||
|
else if target == "iphone" then ""
|
||||||
|
else throw "Target: ${target} is not supported!"}
|
||||||
|
'';
|
||||||
|
}
|
18
pkgs/development/mobile/titaniumenv/default.nix
Normal file
18
pkgs/development/mobile/titaniumenv/default.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{pkgs, pkgs_i686}:
|
||||||
|
|
||||||
|
rec {
|
||||||
|
androidenv = pkgs.androidenv;
|
||||||
|
|
||||||
|
xcodeenv = if pkgs.stdenv.system == "x86_64-darwin" then pkgs.xcodeenv else null;
|
||||||
|
|
||||||
|
titaniumsdk = import ./titaniumsdk.nix {
|
||||||
|
inherit (pkgs) stdenv fetchurl unzip makeWrapper python jdk;
|
||||||
|
};
|
||||||
|
|
||||||
|
buildApp = import ./build-app.nix {
|
||||||
|
inherit (pkgs) stdenv;
|
||||||
|
inherit (androidenv) androidsdk;
|
||||||
|
inherit (xcodeenv) xcodewrapper;
|
||||||
|
inherit titaniumsdk;
|
||||||
|
};
|
||||||
|
}
|
38
pkgs/development/mobile/titaniumenv/examples/default.nix
Normal file
38
pkgs/development/mobile/titaniumenv/examples/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
let
|
||||||
|
pkgs = import <nixpkgs> {};
|
||||||
|
pkgs_i686 = import <nixpkgs> { system = "i686-linux"; };
|
||||||
|
in
|
||||||
|
rec {
|
||||||
|
titaniumenv = import ./.. {
|
||||||
|
inherit pkgs pkgs_i686;
|
||||||
|
};
|
||||||
|
|
||||||
|
kitchensink_android = import ./kitchensink {
|
||||||
|
inherit titaniumenv;
|
||||||
|
inherit (pkgs) fetchgit;
|
||||||
|
target = "android";
|
||||||
|
};
|
||||||
|
|
||||||
|
kitchensink_iphone = import ./kitchensink {
|
||||||
|
inherit titaniumenv;
|
||||||
|
inherit (pkgs) fetchgit;
|
||||||
|
target = "iphone";
|
||||||
|
};
|
||||||
|
|
||||||
|
emulate_kitchensink = import ./emulate-kitchensink {
|
||||||
|
inherit (titaniumenv) androidenv;
|
||||||
|
kitchensink = kitchensink_android;
|
||||||
|
};
|
||||||
|
|
||||||
|
simulate_kitchensink_iphone = import ./simulate-kitchensink {
|
||||||
|
inherit (titaniumenv) xcodeenv;
|
||||||
|
kitchensink = kitchensink_iphone;
|
||||||
|
device = "iPhone";
|
||||||
|
};
|
||||||
|
|
||||||
|
simulate_kitchensink_ipad = import ./simulate-kitchensink {
|
||||||
|
inherit (titaniumenv) xcodeenv;
|
||||||
|
kitchensink = kitchensink_iphone;
|
||||||
|
device = "iPad";
|
||||||
|
};
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
{androidenv, kitchensink}:
|
||||||
|
|
||||||
|
androidenv.emulateApp {
|
||||||
|
name = "kitchensink";
|
||||||
|
app = kitchensink;
|
||||||
|
platformVersion = "8";
|
||||||
|
useGoogleAPIs = true;
|
||||||
|
package = "com.appcelerator.kitchensink";
|
||||||
|
activity = "KitchensinkActivity";
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
{titaniumenv, fetchgit, target, androidPlatformVersions ? [ "8" ]}:
|
||||||
|
|
||||||
|
titaniumenv.buildApp {
|
||||||
|
name = "KitchenSink";
|
||||||
|
appId = "com.appcelerator.kitchensink";
|
||||||
|
src = fetchgit {
|
||||||
|
url = https://github.com/appcelerator/KitchenSink.git;
|
||||||
|
rev = "0f2c0b818034cc4e6867f0aa2afc98bf77dbff02";
|
||||||
|
sha256 = "de31496cfb5625d7a193bbbc32a8021e4094ffab20ae13ef2e1583b0394d7c60";
|
||||||
|
};
|
||||||
|
|
||||||
|
inherit target androidPlatformVersions;
|
||||||
|
|
||||||
|
/*release = true;
|
||||||
|
androidKeyStore = /home/sander/keystore;
|
||||||
|
androidKeyAlias = "sander";
|
||||||
|
androidKeyStorePassword = "foobar";*/
|
||||||
|
|
||||||
|
/*release = true;
|
||||||
|
iosKeyFile = /Users/sander/Downloads/profile.mobileprovision;
|
||||||
|
iosCertificateName = "My Company";
|
||||||
|
iosCertificate = /Users/sander/Downloads/c.p12;
|
||||||
|
iosCertificatePassword = "";*/
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
{xcodeenv, kitchensink, device}:
|
||||||
|
|
||||||
|
xcodeenv.simulateApp {
|
||||||
|
name = "kitchensink";
|
||||||
|
app = kitchensink;
|
||||||
|
inherit device;
|
||||||
|
baseDir = "build/iphone/build/Debug-iphonesimulator";
|
||||||
|
}
|
1
pkgs/development/mobile/titaniumenv/fixnativelibs.sed
Normal file
1
pkgs/development/mobile/titaniumenv/fixnativelibs.sed
Normal file
@ -0,0 +1 @@
|
|||||||
|
s|\t\t\t\t\t\t\t\tapk_zip.write(native_lib, path_in_zip)|\t\t\t\t\t\t\t\tinfo = zipfile.ZipInfo(path_in_zip)\n\t\t\t\t\t\t\t\tinfo.compress_type = zipfile.ZIP_DEFLATED\n\t\t\t\t\t\t\t\tinfo.create_system = 3\n\t\t\t\t\t\t\t\tf = open(native_lib)\n\t\t\t\t\t\t\t\tapk_zip.writestr(info, f.read())\n\t\t\t\t\t\t\t\tf.close()|
|
1
pkgs/development/mobile/titaniumenv/fixselfruntimev8.sed
Normal file
1
pkgs/development/mobile/titaniumenv/fixselfruntimev8.sed
Normal file
@ -0,0 +1 @@
|
|||||||
|
s|apk_zip.write(os.path.join(lib_source_dir, fname), lib_dest_dir + fname)|info = zipfile.ZipInfo(lib_dest_dir + fname)\n\t\t\t\t\tinfo.compress_type = zipfile.ZIP_DEFLATED\n\t\t\t\t\tinfo.create_system = 3\n\t\t\t\t\tf = open(os.path.join(lib_source_dir, fname))\n\t\t\t\t\tapk_zip.writestr(info, f.read())\n\t\t\t\t\tf.close()|
|
1
pkgs/development/mobile/titaniumenv/fixtiverify.sed
Normal file
1
pkgs/development/mobile/titaniumenv/fixtiverify.sed
Normal file
@ -0,0 +1 @@
|
|||||||
|
s|apk_zip.write(os.path.join(lib_source_dir, 'libtiverify.so'), lib_dest_dir + 'libtiverify.so')|info = zipfile.ZipInfo(lib_dest_dir + 'libtiverify.so')\n\t\t\tinfo.compress_type = zipfile.ZIP_DEFLATED\n\t\t\tinfo.create_system = 3\n\t\t\tf = open(os.path.join(lib_source_dir, 'libtiverify.so'))\n\t\t\tapk_zip.writestr(info, f.read())\n\t\t\tf.close()|
|
57
pkgs/development/mobile/titaniumenv/titaniumsdk.nix
Normal file
57
pkgs/development/mobile/titaniumenv/titaniumsdk.nix
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
{stdenv, fetchurl, unzip, makeWrapper, python, jdk}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "titanium-mobilesdk-2.1.5.v20121112144658";
|
||||||
|
src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl {
|
||||||
|
url = http://builds.appcelerator.com.s3.amazonaws.com/mobile/2_1_X/mobilesdk-2.1.5.v20121112144658-linux.zip;
|
||||||
|
sha1 = "79f073d11ee893c508c5aa675a3126501dd385fd";
|
||||||
|
}
|
||||||
|
else if stdenv.system == "x86_64-darwin" then fetchurl {
|
||||||
|
url = http://builds.appcelerator.com.s3.amazonaws.com/mobile/2_1_X/mobilesdk-2.1.5.v20121112144658-osx.zip;
|
||||||
|
sha1 = "6a9a726882222d1615de332aa1ca608c15564e1c";
|
||||||
|
}
|
||||||
|
else throw "Platform: ${stdenv.system} not supported!";
|
||||||
|
|
||||||
|
buildInputs = [ unzip makeWrapper ];
|
||||||
|
|
||||||
|
buildCommand = ''
|
||||||
|
mkdir -p $out
|
||||||
|
cd $out
|
||||||
|
yes y | unzip $src
|
||||||
|
|
||||||
|
# Fix shebang header for python scripts
|
||||||
|
|
||||||
|
find . -name \*.py | while read i
|
||||||
|
do
|
||||||
|
sed -i -e "s|#!/usr/bin/env python|#!${python}/bin/python|" $i
|
||||||
|
done
|
||||||
|
|
||||||
|
# Zip files do not support timestamps lower than 1980. We have to apply a few work-arounds to cope with that
|
||||||
|
# Yes, I know it's nasty :-)
|
||||||
|
|
||||||
|
cd mobilesdk/*/*/android
|
||||||
|
|
||||||
|
sed -i -f ${./fixtiverify.sed} builder.py
|
||||||
|
sed -i -f ${./fixselfruntimev8.sed} builder.py
|
||||||
|
sed -i -f ${./fixnativelibs.sed} builder.py
|
||||||
|
|
||||||
|
# Patch some executables
|
||||||
|
|
||||||
|
${if stdenv.system == "i686-linux" then
|
||||||
|
''
|
||||||
|
patchelf --set-interpreter ${stdenv.gcc.libc}/lib/ld-linux.so.2 titanium_prep.linux32
|
||||||
|
''
|
||||||
|
else if stdenv.system == "x86_64-linux" then
|
||||||
|
''
|
||||||
|
patchelf --set-interpreter ${stdenv.gcc.libc}/lib/ld-linux-x86-64.so.2 titanium_prep.linux64
|
||||||
|
''
|
||||||
|
else ""}
|
||||||
|
|
||||||
|
# Wrap builder script
|
||||||
|
|
||||||
|
wrapProgram `pwd`/builder.py \
|
||||||
|
--prefix PYTHONPATH : ${python.modules.sqlite3}/lib/python*/site-packages \
|
||||||
|
--prefix PATH : ${jdk}/bin \
|
||||||
|
--prefix JAVA_HOME : ${jdk}
|
||||||
|
'';
|
||||||
|
}
|
92
pkgs/development/mobile/xcodeenv/build-app.nix
Normal file
92
pkgs/development/mobile/xcodeenv/build-app.nix
Normal file
@ -0,0 +1,92 @@
|
|||||||
|
{stdenv, xcodewrapper}:
|
||||||
|
{ name
|
||||||
|
, src
|
||||||
|
, target ? null
|
||||||
|
, configuration ? null
|
||||||
|
, scheme ? null
|
||||||
|
, sdk ? null
|
||||||
|
, arch ? null
|
||||||
|
, xcodeFlags ? ""
|
||||||
|
, release ? false
|
||||||
|
, codeSignIdentity ? null
|
||||||
|
, certificateFile ? null
|
||||||
|
, certificatePassword ? null
|
||||||
|
, provisioningProfile ? null
|
||||||
|
, generateIPA ? false
|
||||||
|
, generateXCArchive ? false
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert release -> codeSignIdentity != null && certificateFile != null && certificatePassword != null && provisioningProfile != null;
|
||||||
|
|
||||||
|
let
|
||||||
|
# Set some default values here
|
||||||
|
|
||||||
|
_target = if target == null then name else target;
|
||||||
|
_scheme = if scheme == null then name else scheme;
|
||||||
|
|
||||||
|
_configuration = if configuration == null
|
||||||
|
then
|
||||||
|
if release then "Release" else "Debug"
|
||||||
|
else configuration;
|
||||||
|
|
||||||
|
_arch = if arch == null
|
||||||
|
then
|
||||||
|
if release then "armv7" else "i386"
|
||||||
|
else arch;
|
||||||
|
|
||||||
|
_sdk = if sdk == null
|
||||||
|
then
|
||||||
|
if release then "iphoneos6.0" else "iphonesimulator6.0"
|
||||||
|
else sdk;
|
||||||
|
|
||||||
|
# The following is to prevent repetition
|
||||||
|
deleteKeychain = "security delete-keychain $keychainName";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
inherit name src;
|
||||||
|
buildInputs = [ xcodewrapper ];
|
||||||
|
buildPhase = ''
|
||||||
|
${stdenv.lib.optionalString release ''
|
||||||
|
export HOME=/Users/$(whoami)
|
||||||
|
keychainName="$(basename $out)"
|
||||||
|
|
||||||
|
# Create a keychain
|
||||||
|
security create-keychain -p "" $keychainName
|
||||||
|
security default-keychain -s $keychainName
|
||||||
|
security unlock-keychain -p "" $keychainName
|
||||||
|
|
||||||
|
# Import the certificate into the keychain
|
||||||
|
security import ${certificateFile} -k $keychainName -P "${certificatePassword}" -A
|
||||||
|
|
||||||
|
# Determine provisioning ID
|
||||||
|
PROVISIONING_PROFILE=$(grep UUID -A1 -a ${provisioningProfile} | grep -o "[-A-Z0-9]\{36\}")
|
||||||
|
|
||||||
|
if [ ! -f "$HOME/Library/MobileDevice/Provisioning Profiles/$PROVISIONING_PROFILE.mobileprovision" ]
|
||||||
|
then
|
||||||
|
# Copy provisioning profile into the home directory
|
||||||
|
mkdir -p "$HOME/Library/MobileDevice/Provisioning Profiles"
|
||||||
|
cp ${provisioningProfile} "$HOME/Library/MobileDevice/Provisioning Profiles/$PROVISIONING_PROFILE.mobileprovision"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check whether the identity can be found
|
||||||
|
security find-identity -p codesigning $keychainName
|
||||||
|
''}
|
||||||
|
|
||||||
|
# Do the building
|
||||||
|
xcodebuild -target ${_target} -configuration ${_configuration} -scheme ${_scheme} -sdk ${_sdk} -arch ${_arch} ONLY_ACTIVE_ARCH=NO CONFIGURATION_TEMP_DIR=$TMPDIR CONFIGURATION_BUILD_DIR=$out ${if generateXCArchive then "archive" else ""} ${xcodeFlags} ${if release then ''"CODE_SIGN_IDENTITY=${codeSignIdentity}" PROVISIONING_PROFILE=$PROVISIONING_PROFILE OTHER_CODE_SIGN_FLAGS="--keychain $HOME/Library/Keychains/$keychainName"'' else ""}
|
||||||
|
|
||||||
|
${stdenv.lib.optionalString release ''
|
||||||
|
${stdenv.lib.optionalString generateIPA ''
|
||||||
|
# Produce an IPA file
|
||||||
|
xcrun -sdk iphoneos PackageApplication -v $out/*.app -o $out/${name}.ipa
|
||||||
|
''}
|
||||||
|
|
||||||
|
# Delete our temp keychain
|
||||||
|
${deleteKeychain}
|
||||||
|
''}
|
||||||
|
'';
|
||||||
|
|
||||||
|
failureHook = stdenv.lib.optionalString release deleteKeychain;
|
||||||
|
|
||||||
|
installPhase = "true";
|
||||||
|
}
|
15
pkgs/development/mobile/xcodeenv/default.nix
Normal file
15
pkgs/development/mobile/xcodeenv/default.nix
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{stdenv}:
|
||||||
|
|
||||||
|
rec {
|
||||||
|
xcodewrapper = import ./xcodewrapper.nix {
|
||||||
|
inherit stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
|
buildApp = import ./build-app.nix {
|
||||||
|
inherit stdenv xcodewrapper;
|
||||||
|
};
|
||||||
|
|
||||||
|
simulateApp = import ./simulate-app.nix {
|
||||||
|
inherit stdenv xcodewrapper;
|
||||||
|
};
|
||||||
|
}
|
17
pkgs/development/mobile/xcodeenv/simulate-app.nix
Normal file
17
pkgs/development/mobile/xcodeenv/simulate-app.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{stdenv, xcodewrapper}:
|
||||||
|
{name, app, device ? "iPhone", baseDir ? ""}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
inherit name;
|
||||||
|
buildCommand = ''
|
||||||
|
ensureDir $out/bin
|
||||||
|
cat > $out/bin/run-test-simulator << "EOF"
|
||||||
|
#! ${stdenv.shell} -e
|
||||||
|
|
||||||
|
cd ${app}/${baseDir}/${name}.app
|
||||||
|
"$(readlink "${xcodewrapper}/bin/iPhone Simulator")" -SimulateApplication ./${name} -SimulateDevice '${device}'
|
||||||
|
EOF
|
||||||
|
chmod +x $out/bin/run-test-simulator
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
24
pkgs/development/mobile/xcodeenv/xcodewrapper.nix
Normal file
24
pkgs/development/mobile/xcodeenv/xcodewrapper.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{stdenv}:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "4.5.2";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "xcode-wrapper-"+version;
|
||||||
|
buildCommand = ''
|
||||||
|
ensureDir $out/bin
|
||||||
|
cd $out/bin
|
||||||
|
ln -s /usr/bin/xcode-select
|
||||||
|
ln -s /usr/bin/xcodebuild
|
||||||
|
ln -s /usr/bin/xcrun
|
||||||
|
ln -s /usr/bin/security
|
||||||
|
ln -s "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app/Contents/MacOS/iPhone Simulator"
|
||||||
|
|
||||||
|
# Check if we have the xcodebuild version that we want
|
||||||
|
if [ -z "$($out/bin/xcodebuild -version | grep ${version})" ]
|
||||||
|
then
|
||||||
|
echo "We require xcodebuild version: ${version}"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
'';
|
||||||
|
}
|
@ -37,6 +37,7 @@
|
|||||||
runHook postCheck
|
runHook postCheck
|
||||||
''
|
''
|
||||||
|
|
||||||
|
, preInstall ? ""
|
||||||
, postInstall ? ""
|
, postInstall ? ""
|
||||||
|
|
||||||
, ... } @ attrs:
|
, ... } @ attrs:
|
||||||
@ -63,7 +64,7 @@ python.stdenv.mkDerivation (attrs // {
|
|||||||
${preConfigure}
|
${preConfigure}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = preInstall + ''
|
||||||
mkdir -p "$out/lib/${python.libPrefix}/site-packages"
|
mkdir -p "$out/lib/${python.libPrefix}/site-packages"
|
||||||
|
|
||||||
echo "installing \`${name}' with \`easy_install'..."
|
echo "installing \`${name}' with \`easy_install'..."
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "hlint";
|
pname = "hlint";
|
||||||
version = "1.8.39";
|
version = "1.8.40";
|
||||||
sha256 = "009qf441nri8pxzz22xvpz44dhspr9bkh5diaz29abimj10fm375";
|
sha256 = "18w4dhxv7c1y4x1agdjq99ss5i77jnm8p9vg3jp9gvhk2arhcl0x";
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||||||
"--shared-v8-libpath=${v8}/lib"
|
"--shared-v8-libpath=${v8}/lib"
|
||||||
];
|
];
|
||||||
|
|
||||||
patches = stdenv.lib.optional stdenv.isDarwin ./no-arch-flag.patch;
|
#patches = stdenv.lib.optional stdenv.isDarwin ./no-arch-flag.patch;
|
||||||
|
|
||||||
prePatch = ''
|
prePatch = ''
|
||||||
sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i tools/{*.py,waf-light,node-waf} configure
|
sed -e 's|^#!/usr/bin/env python$|#!${python}/bin/python|g' -i tools/{*.py,waf-light,node-waf} configure
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, ncurses, openssl, flex, bison, miscfiles}:
|
{stdenv, fetchurl, ncurses, openssl, flex, bison, less, miscfiles}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "bsd-games-2.17";
|
name = "bsd-games-2.17";
|
||||||
@ -26,12 +26,19 @@ stdenv.mkDerivation {
|
|||||||
bsd_games_cfg_fortune_dir=$out/share/games/fortune
|
bsd_games_cfg_fortune_dir=$out/share/games/fortune
|
||||||
bsd_games_cfg_quiz_dir=$out/share/games/quiz
|
bsd_games_cfg_quiz_dir=$out/share/games/quiz
|
||||||
bsd_games_cfg_gamesdir=$out/bin
|
bsd_games_cfg_gamesdir=$out/bin
|
||||||
|
bsd_games_cfg_sbindir=$out/bin
|
||||||
|
bsd_games_cfg_usrbindir=$out/bin
|
||||||
|
bsd_games_cfg_libexecdir=$out/lib/games/dm
|
||||||
|
bsd_games_cfg_docdir=$out/share/doc/bsd-games
|
||||||
|
bsd_games_cfg_sharedir=$out/share/games
|
||||||
|
bsd_games_cfg_varlibdir=.
|
||||||
bsd_games_cfg_non_interactive=y
|
bsd_games_cfg_non_interactive=y
|
||||||
bsd_games_cfg_no_build_dirs="dab hack phantasia sail"
|
bsd_games_cfg_no_build_dirs="dab hack phantasia sail"
|
||||||
bsd_games_cfg_dictionary_src=${miscfiles}/share/dict/words
|
bsd_games_cfg_dictionary_src=${miscfiles}/share/dict/words
|
||||||
|
bsd_games_cfg_pager=${less}
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
sed -e s/getline/sdgames_local_getline/g -i $(grep getline -rl .)
|
sed -e s/getline/bsdgames_local_getline/g -i $(grep getline -rl .)
|
||||||
'';
|
'';
|
||||||
|
|
||||||
postConfigure = ''
|
postConfigure = ''
|
||||||
|
@ -1,15 +1,33 @@
|
|||||||
{ fetchurl, stdenv, cmake, boost, ogre, myguiSvn, ois, SDL, libvorbis, pkgconfig
|
{ fetchgit, stdenv, cmake, boost, ogre, mygui, ois, SDL, libvorbis, pkgconfig
|
||||||
, makeWrapper }:
|
, makeWrapper, enet, libXcursor }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "stunt-rally-1.4";
|
name = "stunt-rally-1.8";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchgit {
|
||||||
url = mirror://sourceforge/stuntrally/StuntRally-1.4-sources.tar.bz2;
|
url = git://github.com/stuntrally/stuntrally.git;
|
||||||
sha256 = "1am5af4l1qliyrq1183sqvwzqwcjx0v6gkzsxhfmk6ygp7yhw7kq";
|
rev = "refs/tags/1.8";
|
||||||
|
sha256 = "0p8p83xx8q33kymsqnmxqca4jdfyg9rwrsac790z56gdbc7gnahm";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake boost ogre myguiSvn ois SDL libvorbis pkgconfig makeWrapper ];
|
tracks = fetchgit {
|
||||||
|
url = git://github.com/stuntrally/tracks.git;
|
||||||
|
rev = "refs/tags/1.8";
|
||||||
|
sha256 = "1gcrs21nn0v3hvhrw8dc0wh1knn5qh66cjx7a1igiciiadmi2s3l";
|
||||||
|
};
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
sed -i 's/materials/materials material_templates/' data/CMakeLists.txt
|
||||||
|
'';
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
mkdir data/tracks
|
||||||
|
cp -R $tracks/* data/tracks
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [ cmake boost ogre mygui ois SDL libvorbis pkgconfig makeWrapper enet
|
||||||
|
libXcursor
|
||||||
|
];
|
||||||
|
|
||||||
# I think they suppose cmake should give them OGRE_PLUGIN_DIR defined, but
|
# I think they suppose cmake should give them OGRE_PLUGIN_DIR defined, but
|
||||||
# the cmake code I saw is not ready for that. Therefore, we use the env var.
|
# the cmake code I saw is not ready for that. Therefore, we use the env var.
|
||||||
|
@ -1,24 +1,27 @@
|
|||||||
{ fetchurl, stdenv, plib, SDL, openal, freealut, mesa
|
{ fetchurl, cmake, stdenv, plib, SDL, openal, freealut, mesa
|
||||||
, libvorbis, libogg, gettext, irrlicht3843, libXxf86vm, curl, pkgconfig
|
, libvorbis, libogg, gettext, libXxf86vm, curl, pkgconfig
|
||||||
, fribidi }:
|
, fribidi, autoconf, automake, libtool }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "supertuxkart-0.7.3";
|
name = "supertuxkart-0.8";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/supertuxkart/${name}-src.tar.bz2";
|
url = "mirror://sourceforge/supertuxkart/${name}-src.tar.bz2";
|
||||||
sha256 = "0njrs2qyhbiqdbsqk9jx0sl8nhdwmipf1i91k23rv1biwrim9yq7";
|
sha256 = "12sbml4wxg2x2wgnnkxfisj96a9gcsaj3fj27kdk8yj524ikv7xr";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
plib SDL openal freealut mesa libvorbis libogg gettext irrlicht3843
|
plib SDL openal freealut mesa libvorbis libogg gettext
|
||||||
libXxf86vm curl pkgconfig fribidi
|
libXxf86vm curl pkgconfig fribidi autoconf automake libtool cmake
|
||||||
];
|
];
|
||||||
|
|
||||||
configureFlags = [ "--with-irrlicht=${irrlicht3843}" ];
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
postInstall = ''
|
preConfigure = ''
|
||||||
mv $out/games $out/bin
|
echo Building internal Irrlicht
|
||||||
|
cd lib/irrlicht/source/Irrlicht/
|
||||||
|
NDEBUG=1 make ''${enableParallelBuilding:+-j''${NIX_BUILD_CORES} -l''${NIX_BUILD_CORES}}
|
||||||
|
cd -
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
andres = "Andres Loeh <ksnixos@andres-loeh.de>";
|
andres = "Andres Loeh <ksnixos@andres-loeh.de>";
|
||||||
antono = "Antono Vasiljev <self@antono.info>";
|
antono = "Antono Vasiljev <self@antono.info>";
|
||||||
astsmtl = "Alexander Tsamutali <astsmtl@yandex.ru>";
|
astsmtl = "Alexander Tsamutali <astsmtl@yandex.ru>";
|
||||||
|
aszlig = "aszlig <aszlig@redmoonstudios.org>";
|
||||||
bbenoist = "Baptist BENOIST <return_0@live.com>";
|
bbenoist = "Baptist BENOIST <return_0@live.com>";
|
||||||
bjg = "Brian Gough <bjg@gnu.org>";
|
bjg = "Brian Gough <bjg@gnu.org>";
|
||||||
bluescreen303 = "Mathijs Kwik <mathijs@bluescreen303.nl>";
|
bluescreen303 = "Mathijs Kwik <mathijs@bluescreen303.nl>";
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user