Unverified Commit ead67d42 authored by Peder Bergebakken Sundt's avatar Peder Bergebakken Sundt Committed by GitHub
Browse files

samplv1: 0.9.23 -> 1.3.0 (#385428)

parents 92f5ad20 e29798a9
Loading
Loading
Loading
Loading
+14 −8
Original line number Diff line number Diff line
{
  mkDerivation,
  lib,
  stdenv,
  fetchurl,
  pkg-config,
  libjack2,
@@ -11,20 +11,25 @@
  qtbase,
  qttools,
  rubberband,
  wrapQtAppsHook,
  cmake,
  qtsvg,
}:

mkDerivation rec {
stdenv.mkDerivation rec {
  pname = "samplv1";
  version = "0.9.23";
  version = "1.3.0";

  src = fetchurl {
    url = "mirror://sourceforge/samplv1/${pname}-${version}.tar.gz";
    sha256 = "sha256-eJA6ixH20Wv+cD2CKGomncyfJ4tfpOL3UrTeCkb5/q0=";
    url = "mirror://sourceforge/samplv1/samplv1-${version}.tar.gz";
    hash = "sha256-ZmRsiFDqJsG28FiFR/RbeXkeeLn2HBfImKQM5PaRF78=";
  };

  nativeBuildInputs = [
    qttools
    pkg-config
    wrapQtAppsHook
    cmake
  ];

  buildInputs = [
@@ -35,14 +40,15 @@ mkDerivation rec {
    lv2
    qtbase
    rubberband
    qtsvg
  ];

  meta = with lib; {
  meta = {
    description = "Old-school all-digital polyphonic sampler synthesizer with stereo fx";
    mainProgram = "samplv1_jack";
    homepage = "http://samplv1.sourceforge.net/";
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    license = lib.licenses.gpl2Plus;
    platforms = lib.platforms.linux;
    maintainers = [ ];
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -15917,7 +15917,7 @@ with pkgs;
    inherit (darwin.apple_sdk.frameworks) Security SystemConfiguration;
  };
  samplv1 = libsForQt5.callPackage ../applications/audio/samplv1 { };
  samplv1 = qt6.callPackage ../applications/audio/samplv1 { };
  beancount = with python3.pkgs; toPythonApplication beancount;