otadump: init at 0.1.2 (#329129)
[NixPkgs.git] / pkgs / os-specific / darwin / qes / default.nix
blob5b824da0f587132a742316b940e6242b8ba617a0
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   Carbon,
6 }:
8 stdenv.mkDerivation {
9   pname = "qes";
10   version = "0.0.2";
12   src = fetchFromGitHub {
13     owner = "koekeishiya";
14     repo = "qes";
15     rev = "ddedf008f0c38b134501ad9f328447b671423d34"; # no tag
16     sha256 = "1w9ppid7jg6f4q7pq40lhm0whg7xmnxcmf3pb9xqfkq2zj2f7dxv";
17   };
19   buildInputs = [ Carbon ];
21   makeFlags = [ "BUILD_PATH=$(out)/bin" ];
23   meta = with lib; {
24     description = "Quartz Event Synthesizer";
25     homepage = "https://github.com/koekeishiya/qes";
26     platforms = platforms.darwin;
27     maintainers = with maintainers; [ lnl7 ];
28     license = licenses.mit;
29   };