Merge branch 'master' into x-updates
Conflicts (just splitting version from name): pkgs/os-specific/linux/systemd/default.nix
This commit is contained in:
@@ -7,12 +7,12 @@ assert stdenv.isLinux;
|
||||
assert stdenv.gcc.gcc != null;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.5.28";
|
||||
version = "1.5.29";
|
||||
name = "wine-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/wine/${name}.tar.bz2";
|
||||
sha256 = "0ik02c11bp1glafcw82drkmjp8lxrkycvas3jlrvf1rv46blpy0b";
|
||||
sha256 = "1cc8g1mrs02nk16jz4a8brr82slp944k4c1nmaa2xpz183a0wz1q";
|
||||
};
|
||||
|
||||
gecko = fetchurl {
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
{ mkDerivation, substituteAll, pkgs }:
|
||||
{ stdenv ? pkgs.stdenv, name, buildInputs ? []
|
||||
, propagatedBuildInputs ? [], gcc ? stdenv.gcc, cTags ? [], extraCmds ? ""
|
||||
, shell ? "${pkgs.bashInteractive}/bin/bash"}:
|
||||
, cleanupCmds ? "", shell ? "${pkgs.bashInteractive}/bin/bash"}:
|
||||
|
||||
mkDerivation {
|
||||
# The setup.sh script from stdenv will expect the native build inputs in
|
||||
@@ -133,8 +133,15 @@ mkDerivation {
|
||||
fi
|
||||
rm -fr "\$tmp"
|
||||
${extraCmds}
|
||||
|
||||
nix_cleanup() {
|
||||
${cleanupCmds}
|
||||
}
|
||||
|
||||
export PATH
|
||||
echo $name loaded
|
||||
|
||||
trap nix_cleanup EXIT
|
||||
EOF
|
||||
|
||||
mkdir -p $out/bin
|
||||
|
||||
@@ -10,4 +10,5 @@ export buildInputs
|
||||
export NIX_STRIP_DEBUG=0
|
||||
export TZ="$OLDTZ"
|
||||
|
||||
exec @shell@ --norc
|
||||
@shell@ --norc
|
||||
|
||||
|
||||
Reference in New Issue
Block a user