summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/qes/default.nix
blob: dce6e526626013d3a5e426f19acc84697d2581dc (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
{ lib, stdenv, fetchFromGitHub, Carbon }:

stdenv.mkDerivation {
  pname = "qes";
  version = "0.0.2";

  src = fetchFromGitHub {
    owner = "koekeishiya";
    repo = "qes";
    rev = "ddedf008f0c38b134501ad9f328447b671423d34";  # no tag
    sha256 = "1w9ppid7jg6f4q7pq40lhm0whg7xmnxcmf3pb9xqfkq2zj2f7dxv";
  };

  buildInputs = [ Carbon ];

  makeFlags = [ "BUILD_PATH=$(out)/bin" ];

  meta = with lib; {
    description = "Quartz Event Synthesizer";
    homepage = "https://github.com/koekeishiya/qes";
    platforms = platforms.darwin;
    maintainers = with maintainers; [ lnl7 ];
    license = licenses.mit;
  };
}