mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
plan9port: 20140306 -> 2015-06-29
We were already using snapshots, but development moved to github. Also add "9" to $out/bin as it is the recommended practice, see install.txt
This commit is contained in:
parent
4962bc3e3d
commit
195671aa70
@ -1,23 +1,34 @@
|
|||||||
source $stdenv/setup
|
source $stdenv/setup
|
||||||
|
|
||||||
tar xvfz $src
|
export PLAN9=$out/plan9
|
||||||
|
|
||||||
cd plan9port
|
|
||||||
|
|
||||||
|
configurePhase()
|
||||||
|
{
|
||||||
echo CFLAGS=\"-I${fontconfig}/include -I${libXt}/include\" > LOCAL.config
|
echo CFLAGS=\"-I${fontconfig}/include -I${libXt}/include\" > LOCAL.config
|
||||||
echo X11=\"${libXt}/include\" >> LOCAL.config
|
echo X11=\"${libXt}/include\" >> LOCAL.config
|
||||||
|
|
||||||
for p in $patches; do
|
|
||||||
echo "applying patch $p"
|
|
||||||
patch -p1 < $p
|
|
||||||
done
|
|
||||||
|
|
||||||
export PLAN9=$out/plan9
|
|
||||||
mkdir -p $PLAN9
|
|
||||||
|
|
||||||
for f in `grep -l -r /usr/local/plan9`; do
|
for f in `grep -l -r /usr/local/plan9`; do
|
||||||
sed "s,/usr/local/plan9,${PLAN9},g" -i $f
|
sed "s,/usr/local/plan9,${PLAN9},g" -i $f
|
||||||
done
|
done
|
||||||
|
}
|
||||||
|
|
||||||
./INSTALL -r $PLAN9
|
buildPhase()
|
||||||
|
{
|
||||||
|
mkdir -p $PLAN9
|
||||||
|
./INSTALL -b $PLAN9
|
||||||
|
}
|
||||||
|
|
||||||
|
installPhase()
|
||||||
|
{
|
||||||
|
./INSTALL -c -r $PLAN9
|
||||||
|
# Copy sources
|
||||||
cp -R * $PLAN9
|
cp -R * $PLAN9
|
||||||
|
|
||||||
|
# Copy the `9' utility. This way you can use
|
||||||
|
# $ 9 awk
|
||||||
|
# to use the plan 9 awk
|
||||||
|
mkdir $out/bin
|
||||||
|
ln -s $PLAN9/bin/9 $out/bin
|
||||||
|
}
|
||||||
|
|
||||||
|
genericBuild
|
||||||
|
@ -1,10 +1,17 @@
|
|||||||
{stdenv, fetchurl, which, libX11, libXt, fontconfig
|
{stdenv, fetchgit, which, libX11, libXt, fontconfig
|
||||||
, xproto ? null
|
, xproto ? null
|
||||||
, xextproto ? null
|
, xextproto ? null
|
||||||
, libXext ? null }:
|
, libXext ? null }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "plan9port-20140306";
|
name = "plan9port-2015-06-29";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
# Latest, same as on github, google code is old
|
||||||
|
url = "https://plan9port.googlesource.com/plan9";
|
||||||
|
rev = "71de840";
|
||||||
|
sha256 = "1ffece7c0a5775a8bde6a0618c7ae3da4048449008a19e6623e8e5553f133b4c";
|
||||||
|
};
|
||||||
|
|
||||||
patches = [ ./fontsrv.patch ];
|
patches = [ ./fontsrv.patch ];
|
||||||
postPatch =
|
postPatch =
|
||||||
@ -15,13 +22,6 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://plan9port.googlecode.com/files/${name}.tgz";
|
|
||||||
# Google code is much faster than swtch
|
|
||||||
# url = "http://swtch.com/plan9port/${name}.tgz";
|
|
||||||
sha256 = "1sza12j3db7i54r3pzli8wmby6aiyzmyfj8w0nidmawkwv6jdf6b";
|
|
||||||
};
|
|
||||||
|
|
||||||
NIX_LDFLAGS="-lgcc_s";
|
NIX_LDFLAGS="-lgcc_s";
|
||||||
buildInputs = stdenv.lib.optionals (!stdenv.isDarwin) [ which libX11 fontconfig xproto libXt xextproto libXext ];
|
buildInputs = stdenv.lib.optionals (!stdenv.isDarwin) [ which libX11 fontconfig xproto libXt xextproto libXext ];
|
||||||
|
|
||||||
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "http://swtch.com/plan9port/";
|
homepage = "http://swtch.com/plan9port/";
|
||||||
description = "Plan 9 from User Space";
|
description = "Plan 9 from User Space";
|
||||||
license = licenses.lpl-102;
|
license = licenses.lpl-102;
|
||||||
maintainers = [ stdenv.lib.maintainers.ftrvxmtrx ];
|
maintainers = with stdenv.lib.maintainers; [ ftrvxmtrx kovirobi ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user