about summary refs log tree commit diff
path: root/pkgs/by-name/pi/pipet/package.nix
blob: 6a49e7d3c934c12331b6dea25a81a51e0ffb261f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  lib,
  fetchFromGitHub,
  buildGoModule,
}:

buildGoModule rec {
  pname = "pipet";
  version = "0.2.1";

  src = fetchFromGitHub {
    owner = "bjesus";
    repo = "pipet";
    rev = version;
    hash = "sha256-PqOx/aFI5gHt78th1nkSKlTGw/r1eU7Ggz5kvtjMCmI=";
  };

  vendorHash = "sha256-jNIjF5jxcpNLAjuWo7OG/Ac4l6NpQNCKzYUgdAoL+C4=";

  ldflags = [
    "-s"
    "-w"
    "-X main.version=${version}"
    "-X main.currentSha=${src.rev}"
  ];

  doCheck = false; # Requires network

  meta = {
    homepage = "https://github.com/bjesus/pipet";
    description = "Scraping and extracting data from online assets";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ bjesus ];
    mainProgram = "pipet";
  };
}