winePackages.staging: mention staging patches in description
This commit is contained in:
parent
45f21f7c84
commit
21c3245b67
1 changed files with 6 additions and 2 deletions
|
@ -7,7 +7,7 @@ let patch = (callPackage ./sources.nix {}).staging;
|
||||||
(mkBuildInputs wineUnstable.pkgArches pkgNames) ++ extra;
|
(mkBuildInputs wineUnstable.pkgArches pkgNames) ++ extra;
|
||||||
in assert stdenv.lib.getVersion wineUnstable == patch.version;
|
in assert stdenv.lib.getVersion wineUnstable == patch.version;
|
||||||
|
|
||||||
stdenv.lib.overrideDerivation wineUnstable (self: {
|
(stdenv.lib.overrideDerivation wineUnstable (self: {
|
||||||
buildInputs = build-inputs [ "perl" "utillinux" "autoconf" ] self.buildInputs;
|
buildInputs = build-inputs [ "perl" "utillinux" "autoconf" ] self.buildInputs;
|
||||||
|
|
||||||
name = "${self.name}-staging";
|
name = "${self.name}-staging";
|
||||||
|
@ -21,4 +21,8 @@ stdenv.lib.overrideDerivation wineUnstable (self: {
|
||||||
./patchinstall.sh DESTDIR="$PWD/.." --all
|
./patchinstall.sh DESTDIR="$PWD/.." --all
|
||||||
cd ..
|
cd ..
|
||||||
'';
|
'';
|
||||||
})
|
})) // {
|
||||||
|
meta = wineUnstable.meta // {
|
||||||
|
description = wineUnstable.meta.description + " (with staging patches)";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue