You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- { pkgs ? import <nixpkgs> { }}:
- with pkgs;
-
- ((callPackage ./Cargo.nix { }).goblin { }).override {
- crateOverrides = defaultCrateOverrides // {
- libgpg-error-sys = attrs: {
- postFixup = ''
- substituteInPlace $lib/env --replace LIBGPG-ERROR GPG_ERROR
- substituteInPlace $lib/env --replace /build/libgpg-error-sys-0.4.1.tar.gz/target/build/ $lib/lib/
- '';
- buildInputs = [stdenv gcc automake autoconf gettext libgpgerror];
- NUM_JOBS = "1";
- };
- libgcrypt-sys = attrs: {
- buildInputs = [stdenv gcc automake autoconf libgpgerror libgcrypt];
- };
- goblin = attrs: {
- buildInputs = [stdenv zlib openssl xorg.libxcb];
- };
- };
- }
|