lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #28888 from disassembler/i-score

i-score: 1.0.0-a67 -> 1.0.0-b31

authored by

Graham Christensen and committed by
GitHub
a61e631f 9dc25609

+19 -15
+19 -15
pkgs/applications/audio/i-score/default.nix
··· 1 1 { 2 + alsaLib, 2 3 boost, 3 4 cln, 4 5 cmake, 5 - fetchgit, 6 + fetchFromGitHub, 6 7 gcc, 7 8 ginac, 8 9 jamomacore, ··· 10 11 libsndfile, 11 12 ninja, 12 13 portaudio, 14 + portmidi, 13 15 qtbase, 14 16 qtdeclarative, 15 17 qtimageformats, 18 + qtmultimedia, 19 + qtquickcontrols2, 20 + qtserialport, 16 21 qtsvg, 17 22 qttools, 18 23 qtwebsockets, ··· 21 26 }: 22 27 23 28 stdenv.mkDerivation rec { 24 - version = "1.0.0-a67"; 29 + version = "1.0.0-b31"; 25 30 name = "i-score-${version}"; 26 31 27 - src = fetchgit { 28 - url = "https://github.com/OSSIA/i-score.git"; 29 - rev = "ede2453b139346ae46702b5e2643c5488f8c89fb"; 30 - sha256 = "0cl9vdmxkshdacgpp7s2rg40b7xbsjrzw916jds9i3rpq1pcy5pj"; 31 - leaveDotGit = true; 32 - deepClone = true; 32 + src = fetchFromGitHub { 33 + owner = "OSSIA"; 34 + repo = "i-score"; 35 + rev = "v${version}"; 36 + sha256 = "0g7s6n11w3wflrv5i2047dxx56lryms7xj0mznnlk5bii7g8dxzb"; 37 + fetchSubmodules = true; 33 38 }; 34 39 35 40 buildInputs = [ 41 + alsaLib 36 42 boost 37 43 cln 38 44 cmake ··· 43 49 libsndfile 44 50 ninja 45 51 portaudio 52 + portmidi 46 53 qtbase 47 54 qtdeclarative 48 55 qtimageformats 56 + qtmultimedia 57 + qtquickcontrols2 58 + qtserialport 49 59 qtsvg 50 60 qttools 51 61 qtwebsockets ··· 59 69 "-DISCORE_BUILD_FOR_PACKAGE_MANAGER=True" 60 70 ]; 61 71 62 - patchPhase = '' 63 - sed -e '77d' -i CMake/modules/GetGitRevisionDescription.cmake 64 - ''; 65 - 66 72 preConfigure = '' 67 73 export CMAKE_PREFIX_PATH="$CMAKE_PREFIX_PATH:$(echo "${jamomacore}/jamoma/share/cmake/Jamoma")" 68 74 ''; 69 75 70 - installPhase = '' 71 - cmake --build . --target install 72 - ''; 76 + postInstall = ''rm $out/bin/i-score.sh''; 73 77 74 78 meta = { 75 79 description = "An interactive sequencer for the intermedia arts";