1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-21 05:25:38 +00:00
nixpkgs/pkgs/os-specific/darwin/qes/default.nix

27 lines
625 B
Nix
Raw Normal View History

2018-03-03 12:54:06 +00:00
{ stdenv, fetchFromGitHub, Carbon }:
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = "qes";
2018-03-03 12:54:06 +00:00
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 stdenv.lib; {
description = "Quartz Event Synthesizer";
homepage = "https://github.com/koekeishiya/qes";
2018-03-03 12:54:06 +00:00
platforms = platforms.darwin;
maintainers = with maintainers; [ lnl7 ];
license = licenses.mit;
};
}