You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
303 B
Nix

self: super:
{
# Add i686-linux platform as a valid target.
rr = super.rr.override {
stdenv = self.stdenv // {
mkDerivation = args: self.stdenv.mkDerivation (args // {
meta = args.meta // {
platforms = self.stdenv.lib.platforms.linux;
};
});
};
};
}