mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Merge pull request #116945 from SuperSandro2000/xlibs-related
This commit is contained in:
commit
0e04d7db6c
2 changed files with 7 additions and 0 deletions
|
@ -15,6 +15,9 @@ stdenv.mkDerivation rec {
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ xnwdd ];
|
maintainers = with maintainers; [ xnwdd ];
|
||||||
|
# error: token ""1.1"" is not valid in preprocessor expression
|
||||||
|
# TODO: fix pname being different from the attribute name
|
||||||
|
broken = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
|
|
|
@ -800,6 +800,10 @@ self: super:
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
xf86videoopenchrome = super.xf86videoopenchrome.overrideAttrs (attrs: {
|
||||||
|
buildInputs = attrs.buildInputs ++ [ self.libXv ];
|
||||||
|
});
|
||||||
|
|
||||||
xf86videoxgi = super.xf86videoxgi.overrideAttrs (attrs: {
|
xf86videoxgi = super.xf86videoxgi.overrideAttrs (attrs: {
|
||||||
patches = [
|
patches = [
|
||||||
# fixes invalid open mode
|
# fixes invalid open mode
|
||||||
|
|
Loading…
Reference in a new issue