nixpkgs/pkgs/os-specific/darwin/qes/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

27 lines
627 B
Nix

{ stdenv, fetchFromGitHub, Carbon }:
stdenv.mkDerivation rec {
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 stdenv.lib; {
description = "Quartz Event Synthesizer";
homepage = https://github.com/koekeishiya/qes;
platforms = platforms.darwin;
maintainers = with maintainers; [ lnl7 ];
license = licenses.mit;
};
}