summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-20 14:44:20 +0100
committerGitHub <noreply@github.com>2021-01-20 14:44:20 +0100
commit9fbb29e6777e4914852d70e145118d72ac21f38c (patch)
tree7dead27693252240a5e2154b6b4bb62a60d28ed3 /pkgs/applications/audio
parent9a3761b6632790782834603c626e1c018aceccfb (diff)
parentf6db6a5a94342769a6253bcf4eb7b91335d29005 (diff)
Merge pull request #104446 from freezeboy/remove-jamomacore
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/i-score/default.nix85
1 files changed, 0 insertions, 85 deletions
diff --git a/pkgs/applications/audio/i-score/default.nix b/pkgs/applications/audio/i-score/default.nix
deleted file mode 100644
index 2592c38e1428..000000000000
--- a/pkgs/applications/audio/i-score/default.nix
+++ /dev/null
@@ -1,85 +0,0 @@
-{
- alsaLib,
- boost,
- cln,
- cmake,
- fetchFromGitHub,
- gcc,
- ginac,
- jamomacore,
- kdnssd,
- libsndfile,
- ninja,
- portaudio,
- portmidi,
- qtbase,
- qtdeclarative,
- qtimageformats,
- qtmultimedia,
- qtquickcontrols2,
- qtserialport,
- qtsvg,
- qttools,
- qtwebsockets,
- rtaudio,
- lib, stdenv
-}:
-
-stdenv.mkDerivation rec {
- version = "1.0.0-b31";
- pname = "i-score";
-
- src = fetchFromGitHub {
- owner = "OSSIA";
- repo = "i-score";
- rev = "v${version}";
- sha256 = "0g7s6n11w3wflrv5i2047dxx56lryms7xj0mznnlk5bii7g8dxzb";
- fetchSubmodules = true;
- };
-
- buildInputs = [
- alsaLib
- boost
- cln
- cmake
- ginac
- gcc
- jamomacore
- kdnssd
- libsndfile
- ninja
- portaudio
- portmidi
- qtbase
- qtdeclarative
- qtimageformats
- qtmultimedia
- qtquickcontrols2
- qtserialport
- qtsvg
- qttools
- qtwebsockets
- rtaudio
- ];
-
- cmakeFlags = [
- "-GNinja"
- "-DISCORE_CONFIGURATION=static-release"
- "-DISCORE_ENABLE_LTO=OFF"
- "-DISCORE_BUILD_FOR_PACKAGE_MANAGER=True"
- ];
-
- preConfigure = ''
- export CMAKE_PREFIX_PATH="''${CMAKE_PREFIX_PATH-}:$(echo "${jamomacore}/jamoma/share/cmake/Jamoma")"
- '';
-
- postInstall = ''rm $out/bin/i-score.sh'';
-
- meta = {
- description = "An interactive sequencer for the intermedia arts";
- homepage = "http://i-score.org/";
- license = lib.licenses.cecill20;
- maintainers = [ lib.maintainers.magnetophon ];
- platforms = lib.platforms.linux;
- };
-}