about summary refs log tree commit diff
path: root/pkgs/by-name/ps/pshs/package.nix
blob: a51d8bf90774e8db9fdd028f69059f9c574bc74e (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
  lib,
  stdenv,
  fetchFromGitHub,
  meson,
  ninja,
  pkg-config,
  libevent,
  file,
  qrencode,
  openssl,
  miniupnpc,
  nix-update-script,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "pshs";
  version = "0.4.3";

  src = fetchFromGitHub {
    owner = "projg2";
    repo = "pshs";
    rev = "v${finalAttrs.version}";
    hash = "sha256-sfhhxeQa0rmBerfAemuHou0N001Zq5Hh7s7utxLQHOI=";
  };

  nativeBuildInputs = [
    meson
    ninja
    pkg-config
  ];

  buildInputs = [
    libevent
    file
    qrencode
    openssl
    miniupnpc
  ];

  strictDeps = true;

  __structuredAttrs = true;

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Pretty small HTTP server - a command-line tool to share files";
    mainProgram = "pshs";
    homepage = "https://github.com/mgorny/pshs";
    sourceProvenance = [ lib.sourceTypes.fromSource ];
    license = lib.licenses.gpl2Plus;
    platforms = lib.platforms.unix;
  };
})