octave: Fix abort due to missing gl2ps library (#38459)

This commit is contained in:
Tyson Whitehead
2019-07-09 15:39:06 -04:00
parent e3993e3a55
commit 6fefb5f7c1
2 changed files with 35 additions and 0 deletions

View File

@@ -17,6 +17,13 @@ self: super: pkgs: with pkgs; {
];
} );
# https://github.com/NixOS/nixpkgs/issues/38459
octave = super.octave.overrideAttrs (attrs: {
buildInputs = attrs.buildInputs ++ [ gl2ps ];
} );
gl2ps = callPackage ./gl2ps.nix { };
# https://github.com/NixOS/nixpkgs/issues/44426
python27 = super.python27.override { packageOverrides = pythonOverrides; };
python35 = super.python35.override { packageOverrides = pythonOverrides; };