Merge pull request #69084 from c0deaddict/feature/init-osmid

osmid: init at 0.6.8
This commit is contained in:
Aaron Andersen 2019-09-20 16:19:11 -04:00 committed by GitHub
commit 8310533289
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ stdenv
, fetchFromGitHub
, cmake
, alsaLib
, libX11
}:
stdenv.mkDerivation rec {
pname = "osmid";
version = "0.6.8";
src = fetchFromGitHub {
owner = "llloret";
repo = "osmid";
rev = "v${version}";
sha256 = "1yl25abf343yvd49nfsgxsz7jf956zrsi5n4xyqb5ldlp2hifk15";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ alsaLib libX11 ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp {m2o,o2m} $out/bin/
runHook postInstall
'';
meta = with stdenv.lib; {
homepage = "https://github.com/llloret/osmid";
description = "A lightweight, portable, easy to use tool to convert MIDI to OSC and OSC to MIDI";
license = licenses.mit;
maintainers = with maintainers; [ c0deaddict ];
platforms = platforms.linux;
};
}

View file

@ -12964,6 +12964,8 @@ in
osm-gps-map = callPackage ../development/libraries/osm-gps-map { };
osmid = callPackage ../applications/audio/osmid {};
osinfo-db = callPackage ../data/misc/osinfo-db { };
osinfo-db-tools = callPackage ../tools/misc/osinfo-db-tools { };