about summary refs log tree commit diff
path: root/pkgs/by-name/ds/dstep/package.nix
blob: 8c847242e702af4a39b754a22105a856a531af41 (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
{ lib, buildDubPackage, fetchFromGitHub, clang, ldc, which }:
buildDubPackage rec {
  pname = "dstep";
  version = "1.0.4";

  src = fetchFromGitHub {
    owner = "jacob-carlborg";
    repo = "dstep";
    rev = "v${version}";
    hash = "sha256-ZFz2+GtBk3StqXo/9x47xrDFdz5XujHR62hj0p3AjcY=";
  };

  dubLock = ./dub-lock.json;

  nativeBuildInputs = [ ldc which clang ];

  preConfigure = ''
    ./configure --llvm-path ${lib.getLib clang.cc}
  '';

  installPhase = ''
    runHook preInstall
    install -Dm755 bin/dstep -t $out/bin
    runHook postInstall
  '';

  meta = with lib; {
    description = "Tool for converting C and Objective-C headers to D modules";
    homepage = "https://github.com/jacob-carlborg/dstep";
    license = licenses.boost;
    mainProgram = "dstep";
    maintainers = with maintainers; [ imrying ];
  };
}