streamlink: 7.1.1 -> 7.1.2 (#373269)
[NixPkgs.git] / pkgs / by-name / ag / agola / package.nix
blob65eac2d281e18c7a454846a545b26c1737e32722
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 let
8   version = "0.9.2";
9 in
11 buildGoModule {
12   pname = "agola";
13   inherit version;
15   src = fetchFromGitHub {
16     owner = "agola-io";
17     repo = "agola";
18     rev = "v${version}";
19     hash = "sha256-ggi0Eb4vO5zBoIrIIa3MFwOIW0IBS8yGF6eveBb+lgY=";
20   };
22   vendorHash = "sha256-Igtccundx/2PHFp8+L44CvOLG+/Ndinhonh/EDcQeoY=";
24   ldflags = [
25     "-s"
26     "-w"
27     "-X agola.io/agola/cmd.Version=${version}"
28   ];
30   tags = [
31     "sqlite_unlock_notify"
32   ];
34   # somehow the tests get stuck
35   doCheck = false;
37   meta = with lib; {
38     description = "Agola: CI/CD Redefined";
39     homepage = "https://agola.io";
40     maintainers = with maintainers; [ happysalada ];
41     license = licenses.mit;
42   };