mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-14 15:19:43 +01:00
Minor Nix cleanup (#131)
This commit is contained in:
parent
b9ed537f64
commit
0dd0e637ed
1 changed files with 14 additions and 17 deletions
31
release.nix
31
release.nix
|
@ -66,21 +66,19 @@
|
||||||
# };);
|
# };);
|
||||||
|
|
||||||
let
|
let
|
||||||
nixpkgs = import ./nixpkgs.nix;
|
|
||||||
|
|
||||||
config = {
|
|
||||||
allowUnfree = true;
|
|
||||||
# For parameterized-0.5.0.0, which we patch for compatbility with
|
|
||||||
# proto3-wire-1.2.0 (which also uses the same patch)
|
|
||||||
allowBroken = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
overlay = pkgsNew: pkgsOld: {
|
overlay = pkgsNew: pkgsOld: {
|
||||||
|
|
||||||
grpc = pkgsNew.callPackage ./nix/grpc.nix { };
|
grpc = pkgsNew.callPackage ./nix/grpc.nix { };
|
||||||
|
|
||||||
haskellPackages = pkgsOld.haskellPackages.override {
|
haskellPackages = pkgsOld.haskellPackages.override {
|
||||||
overrides = haskellPackagesNew: haskellPackagesOld: rec {
|
overrides = haskellPackagesNew: haskellPackagesOld: rec {
|
||||||
|
parameterized =
|
||||||
|
pkgsNew.haskell.lib.overrideCabal
|
||||||
|
haskellPackagesOld.parameterized
|
||||||
|
(old: {
|
||||||
|
broken = false;
|
||||||
|
patches = (old.patches or [ ]) ++ [ ./nix/parameterized.patch ];
|
||||||
|
});
|
||||||
|
|
||||||
haskell-src =
|
haskell-src =
|
||||||
haskellPackagesNew.callHackage "haskell-src" "1.0.3.1" {};
|
haskellPackagesNew.callHackage "haskell-src" "1.0.3.1" {};
|
||||||
|
@ -125,12 +123,12 @@ let
|
||||||
pkgs.grpcio-tools
|
pkgs.grpcio-tools
|
||||||
]);
|
]);
|
||||||
|
|
||||||
in rec {
|
in {
|
||||||
configureFlags = (oldDerivation.configureFlags or []) ++ [
|
configureFlags = (oldDerivation.configureFlags or []) ++ [
|
||||||
"--flags=with-examples"
|
"--flags=with-examples"
|
||||||
];
|
];
|
||||||
|
|
||||||
buildDepends = [
|
buildDepends = (oldDerivation.buildDepends or [ ]) ++ [
|
||||||
pkgsNew.makeWrapper
|
pkgsNew.makeWrapper
|
||||||
# Give our nix-shell its own cabal so we don't pick up one
|
# Give our nix-shell its own cabal so we don't pick up one
|
||||||
# from the user's environment by accident.
|
# from the user's environment by accident.
|
||||||
|
@ -140,9 +138,10 @@ let
|
||||||
haskellPackagesNew.c2hs
|
haskellPackagesNew.c2hs
|
||||||
];
|
];
|
||||||
|
|
||||||
patches = [ tests/tests.patch ];
|
patches =
|
||||||
|
(oldDerivation.patches or [ ]) ++ [ ./tests/tests.patch ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = (oldDerivation.postPatch or "") + ''
|
||||||
patchShebangs tests
|
patchShebangs tests
|
||||||
substituteInPlace tests/simple-client.sh \
|
substituteInPlace tests/simple-client.sh \
|
||||||
--replace @makeWrapper@ ${pkgsNew.makeWrapper} \
|
--replace @makeWrapper@ ${pkgsNew.makeWrapper} \
|
||||||
|
@ -169,7 +168,6 @@ let
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
parameterized = pkgsNew.haskell.lib.appendPatch haskellPackagesOld.parameterized ./nix/parameterized.patch;
|
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -202,9 +200,8 @@ let
|
||||||
|
|
||||||
overlays = [ overlay ];
|
overlays = [ overlay ];
|
||||||
|
|
||||||
in
|
config = { };
|
||||||
|
|
||||||
let
|
|
||||||
nixpkgs = import ./nixpkgs.nix;
|
nixpkgs = import ./nixpkgs.nix;
|
||||||
linuxPkgs = nixpkgs { inherit config overlays; system = "x86_64-linux" ; };
|
linuxPkgs = nixpkgs { inherit config overlays; system = "x86_64-linux" ; };
|
||||||
darwinPkgs = nixpkgs { inherit config overlays; system = "x86_64-darwin"; };
|
darwinPkgs = nixpkgs { inherit config overlays; system = "x86_64-darwin"; };
|
||||||
|
@ -226,6 +223,6 @@ in
|
||||||
|
|
||||||
grpc = pkgs.grpc;
|
grpc = pkgs.grpc;
|
||||||
|
|
||||||
overlay = overlay;
|
inherit pkgs config overlay;
|
||||||
inherit (pkgs) test-grpc-haskell;
|
inherit (pkgs) test-grpc-haskell;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue