* Converting packages. This is the minimal Nix stdenv for building
the ATerm library. svn path=/nixpkgs/trunk/; revision=459
This commit is contained in:
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#! /bin/sh
|
||||
|
||||
. $stdenv/setup || exit 1
|
||||
|
||||
tar xvfz $src || exit 1
|
||||
cd tar-* || exit 1
|
||||
./configure --prefix=$out || exit 1
|
||||
make || exit 1
|
||||
make install || exit 1
|
||||
@@ -0,0 +1,10 @@
|
||||
{stdenv, fetchurl}: derivation
|
||||
{ name = "gnutar-1.13.25"
|
||||
, system = stdenv.system
|
||||
, builder = ./builder.sh
|
||||
, src = fetchurl
|
||||
{ url = ftp://alpha.gnu.org/gnu/tar/tar-1.13.25.tar.gz
|
||||
, md5 = "6ef8c906e81eee441f8335652670ac4a"
|
||||
}
|
||||
, stdenv = stdenv
|
||||
}
|
||||
Reference in New Issue
Block a user