Skip to content
Snippets Groups Projects
Select Git revision
  • 7cf3fc24bb7658916e50a213b855dac1a9e49ec3
  • main default protected
  • use-iohk-cache-on-ci
  • cabal2nix
  • minimal-example
  • rename-metrics
  • upgrade-challenge-bypass-ristretto
  • integration
  • 24.stripe-charge-rebased
  • 10.apidocs
10 results

config.yml

Blame
  • privacypass.nix 251 B
    { fetchFromGitHub, callPackage }:
    let
      src = import ./privacypass-repo.nix { inherit fetchFromGitHub; };
      privacypass = callPackage "${src}" { };
    in
      privacypass.overrideAttrs (old: {
        patches = [
          ./remove-setuptools-scm.patch
        ];
      })