1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

work around Nix "logics" >-)

svn path=/nixpkgs/trunk/; revision=1579
This commit is contained in:
Armijn Hemel 2004-10-19 12:15:22 +00:00
parent d133b324c0
commit 042afeeed8
3 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
. $stdenv/setup
mkdir $out
cp -a $src $out
cp -a $src/* $out

View file

@ -3,5 +3,5 @@
stdenv.mkDerivation {
name = "gnutar-static-1.13.25";
builder = ./builder.sh;
src = ./tar;
src = ./bin;
}