* Add GHC options used with stack to postgrest.cabal * Add a Nix derivation for just the executable.
13 lines
231 B
Nix
13 lines
231 B
Nix
with (import ./default.nix);
|
|
pkgs.lib.overrideDerivation env (
|
|
base: {
|
|
buildInputs =
|
|
base.buildInputs ++ [
|
|
pkgs.cabal-install
|
|
pkgs.cabal2nix
|
|
pkgs.postgresql
|
|
nixpkgsUpgrade
|
|
];
|
|
}
|
|
)
|