mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-11 11:32:01 +00:00
90f519caf3
Adds sqlite to the nix flake
41 lines
914 B
Nix
41 lines
914 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs =
|
|
{ nixpkgs, flake-utils, ... }:
|
|
flake-utils.lib.eachDefaultSystem (
|
|
system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
devShells.default = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
# generic
|
|
gnumake
|
|
gnutar
|
|
|
|
# frontend
|
|
nodejs_20
|
|
pnpm
|
|
nodePackages.typescript
|
|
nodePackages.typescript-language-server
|
|
|
|
# backend
|
|
go_1_22
|
|
glibc.static
|
|
gofumpt
|
|
golangci-lint
|
|
go-mockery
|
|
protobuf
|
|
sqlite
|
|
];
|
|
CFLAGS = "-I${pkgs.glibc.dev}/include";
|
|
LDFLAGS = "-L${pkgs.glibc}/lib";
|
|
};
|
|
}
|
|
);
|
|
}
|