lpd8editor: init at v0.0.16
This commit is contained in:
parent
ed0f304e33
commit
668812e470
2 changed files with 43 additions and 0 deletions
41
pkgs/applications/audio/lpd8editor/default.nix
Normal file
41
pkgs/applications/audio/lpd8editor/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
{ lib
|
||||||
|
, qt5
|
||||||
|
, stdenv
|
||||||
|
, git
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cmake
|
||||||
|
, alsa-lib
|
||||||
|
, qttools
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "lpd8editor";
|
||||||
|
version = "0.0.16";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "charlesfleche";
|
||||||
|
repo = "lpd8editor";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-lRp2RhNiIf1VrryfKqYFSbKG3pktw3M7B49fXVoj+C8=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
qttools
|
||||||
|
alsa-lib
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
git
|
||||||
|
qt5.wrapQtAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A linux editor for the Akai LPD8";
|
||||||
|
homepage = "https://github.com/charlesfleche/lpd8editor";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ pinpox ];
|
||||||
|
mainProgram = "lpd8editor";
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -8242,6 +8242,8 @@ with pkgs;
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lpd8editor = libsForQt5.callPackage ../applications/audio/lpd8editor {};
|
||||||
|
|
||||||
lp_solve = callPackage ../applications/science/math/lp_solve {
|
lp_solve = callPackage ../applications/science/math/lp_solve {
|
||||||
inherit (darwin) cctools autoSignDarwinBinariesHook;
|
inherit (darwin) cctools autoSignDarwinBinariesHook;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue