* Get rid of the old UML, move uml-utilities to os-specific/linux.

svn path=/nixpkgs/trunk/; revision=8424
This commit is contained in:
Eelco Dolstra
2007-03-27 11:15:10 +00:00
parent a984882e0c
commit 68d80ff094
7 changed files with 9 additions and 498 deletions
@@ -0,0 +1,13 @@
buildinputs=""
source $stdenv/setup
tar xvfj $src
cd tools
sed s/mconsole// < Makefile > tmp
mv tmp Makefile
mkdir $out
mkdir $out/bin
mkdir $out/lib
mkdir $out/lib/uml
make BIN_DIR=$out/bin LIB_DIR=$out/lib/uml
make BIN_DIR=$out/bin LIB_DIR=$out/lib/uml install
@@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "uml-utilities-20040114";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/uml_utilities_20040114.tar.bz2;
md5 = "1fd5b791ef32c6a3ed4ae42c4a53a316";
};
}