nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5}:
6
7stdenv.mkDerivation {
8 pname = "qes";
9 version = "0.0.2";
10
11 src = fetchFromGitHub {
12 owner = "koekeishiya";
13 repo = "qes";
14 rev = "ddedf008f0c38b134501ad9f328447b671423d34"; # no tag
15 sha256 = "1w9ppid7jg6f4q7pq40lhm0whg7xmnxcmf3pb9xqfkq2zj2f7dxv";
16 };
17
18 makeFlags = [ "BUILD_PATH=$(out)/bin" ];
19
20 meta = with lib; {
21 description = "Quartz Event Synthesizer";
22 homepage = "https://github.com/koekeishiya/qes";
23 platforms = platforms.darwin;
24 maintainers = with maintainers; [ lnl7 ];
25 license = licenses.mit;
26 };
27}