about summary refs log tree commit diff
path: root/pkgs/by-name/ne/needle/package.nix
blob: 3d771cd693e5f83204099be25df35390483cd5e7 (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
{
  stdenv,
  lib,
  fetchFromGitHub,
  swift,
  swiftpm,
  swiftpm2nix,
  sqlite,
}:
let
  generated = swiftpm2nix.helpers ./nix;
in
stdenv.mkDerivation rec {
  pname = "needle";
  version = "0.24.0";

  src = fetchFromGitHub {
    owner = "uber";
    repo = "needle";
    rev = "v${version}";
    hash = "sha256-vQlUcfIj+LHZ3R+XwSr9bBIjcZUWkW2k/wI6HF+sDPo=";
  };

  sourceRoot = "${src.name}/Generator";

  nativeBuildInputs = [
    swift
    swiftpm
  ];

  propagatedBuildInputs = [ sqlite ];

  configurePhase = generated.configure;

  installPhase = ''
    runHook preInstall
    install -Dm755 "$(swiftpmBinPath)"/needle $out/bin/needle
    runHook postInstall
  '';

  meta = with lib; {
    description = "Compile-time safe Swift dependency injection framework";
    homepage = "https://github.com/uber/needle";
    license = licenses.asl20;
    mainProgram = "needle";
    maintainers = with maintainers; [ matteopacini ];
    platforms = platforms.darwin;
  };
}