Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 07eb21ceaf7a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dbbbdfd3c2e4
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jan 24, 2020

  1. sfizz: init at unstable-2020-01-24

    magnetophon authored and Jon committed Jan 24, 2020
    Copy the full SHA
    dbbbdfd View commit details
Showing with 34 additions and 0 deletions.
  1. +32 −0 pkgs/applications/audio/sfizz/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
32 changes: 32 additions & 0 deletions pkgs/applications/audio/sfizz/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub , cmake, libjack2, libsndfile }:

stdenv.mkDerivation rec {
pname = "sfizz";
version = "unstable-2020-01-24";

src = fetchFromGitHub {
owner = "sfztools";
repo = pname;
rev = "b9c332777853cb35faeeda2ff4bf34ea7121ffb9";
sha256 = "0wzgwpcwal5a7ifrm1hx8y6vx832qixk9ilp8wkjnsdxj6i88p2c";
fetchSubmodules = true;
};

nativeBuildInputs = [ cmake ];

buildInputs = [ libjack2 libsndfile ];

cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Release"
"-DSFIZZ_TESTS=ON"
];

meta = with stdenv.lib; {
homepage = "https://github.com/sfztools/sfizz";
description = "SFZ jack client and LV2 plugin";
license = licenses.bsd2;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.all;
badPlatforms = platforms.darwin;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -21304,6 +21304,8 @@ in

setbfree = callPackage ../applications/audio/setbfree { };

sfizz = callPackage ../applications/audio/sfizz { };

sfxr = callPackage ../applications/audio/sfxr { };

sfxr-qt = libsForQt5.callPackage ../applications/audio/sfxr-qt { };