about summary refs log tree commit diff
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2019-03-22 07:33:24 +0100
committerGitHub <noreply@github.com>2019-03-22 07:33:24 +0100
commit870db5e15d76224331a3c7cd53bd1615184094d5 (patch)
treed74c8d704bc1538bae2de8f693a29468e090fdfb
parent52dae14f0c763dd48572058f0f0906166da14c31 (diff)
parente3521e9d8fc539742d66bae48914f47ca160975d (diff)
downloadnixlib-870db5e15d76224331a3c7cd53bd1615184094d5.tar
nixlib-870db5e15d76224331a3c7cd53bd1615184094d5.tar.gz
nixlib-870db5e15d76224331a3c7cd53bd1615184094d5.tar.bz2
nixlib-870db5e15d76224331a3c7cd53bd1615184094d5.tar.lz
nixlib-870db5e15d76224331a3c7cd53bd1615184094d5.tar.xz
nixlib-870db5e15d76224331a3c7cd53bd1615184094d5.tar.zst
nixlib-870db5e15d76224331a3c7cd53bd1615184094d5.zip
Merge pull request #57389 from ggPeti/master
musly: init at unstable-2017-04-26
-rw-r--r--maintainers/maintainer-list.nix5
-rw-r--r--pkgs/applications/audio/musly/default.nix33
-rw-r--r--pkgs/top-level/all-packages.nix2
3 files changed, 40 insertions, 0 deletions
diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index f2748866557a..93fe9f10e6c8 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -1770,6 +1770,11 @@
     github = "Gerschtli";
     name = "Tobias Happ";
   };
+  ggpeti = {
+    email = "ggpeti@gmail.com";
+    github = "ggpeti";
+    name = "Peter Ferenczy";
+  };
   gilligan = {
     email = "tobias.pflug@gmail.com";
     github = "gilligan";
diff --git a/pkgs/applications/audio/musly/default.nix b/pkgs/applications/audio/musly/default.nix
new file mode 100644
index 000000000000..47370d4bc2f7
--- /dev/null
+++ b/pkgs/applications/audio/musly/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchFromGitHub, cmake, eigen, libav_all }:
+stdenv.mkDerivation rec {
+  pname = "musly";
+  version = "unstable-2017-04-26";
+  src = fetchFromGitHub {
+    owner = "dominikschnitzer";
+    repo = "musly";
+    rev = "f911eacbbe0b39ebe87cb37d0caef09632fa40d6";
+    sha256 = "1q42wvdwy2pac7bhfraqqj2czw7w2m33ms3ifjl8phm7d87i8825";
+  };
+  nativeBuildInputs = [ cmake ];
+  buildInputs = [ eigen (libav_all.override { vaapiSupport = stdenv.isLinux; }).libav_11 ];
+  fixupPhase = if stdenv.isDarwin then ''
+    install_name_tool -change libmusly.dylib $out/lib/libmusly.dylib $out/bin/musly
+    install_name_tool -change libmusly_resample.dylib $out/lib/libmusly_resample.dylib $out/bin/musly
+    install_name_tool -change libmusly_resample.dylib $out/lib/libmusly_resample.dylib $out/lib/libmusly.dylib
+  '' else "";
+
+  meta = with stdenv.lib; {
+    homepage = https://www.musly.org;
+    description = "A fast and high-quality audio music similarity library written in C/C++";
+    longDescription = ''
+      Musly analyzes the the audio signal of music pieces to estimate their similarity.
+      No meta-data about the music piece is included in the similarity estimation.
+      To use Musly in your application, have a look at the library documentation
+      or try the command line application included in the package and start generating
+      some automatic music playlists right away.
+    '';
+    license = licenses.mpl20;
+    maintainers = with maintainers; [ ggpeti ];
+    platforms = with platforms; darwin ++ linux;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index eb009c96a170..1240d373dbbb 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -22593,6 +22593,8 @@ in
 
   muse = callPackage ../applications/audio/muse { };
 
+  musly = callPackage ../applications/audio/musly { };
+
   mynewt-newt = callPackage ../tools/package-management/mynewt-newt { };
 
   inherit (callPackage ../tools/package-management/nix {