Merge pull request #279284 from viraptor/nam-lv2

neural-amp-modeler-lv2: init at 0.1.3
This commit is contained in:
Stanisław Pitucha
2024-01-07 21:56:50 +11:00
committed by GitHub
@@ -0,0 +1,29 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation (finalAttrs: {
pname = "neural-amp-modeler-lv2";
version = "0.1.3";
src = fetchFromGitHub {
owner = "mikeoliphant";
repo = finalAttrs.pname;
rev = finalAttrs.version;
fetchSubmodules = true;
hash = "sha256-sRZngmivNvSWcjkIqcqjjaIgXFH8aMq+/caNroXmzIk=";
};
nativeBuildInputs = [
cmake
];
meta = {
maintainers = [ lib.maintainers.viraptor ];
description = "Neural Amp Modeler LV2 plugin implementation";
homepage = finalAttrs.src.meta.homepage;
license = [ lib.licenses.gpl3 ];
};
})