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: 01c3847b9c65
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7d36ae33df9c
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 3, 2017

  1. drumgizmo: 9.12 -> 9.14

    nico202 committed Jul 3, 2017
    Copy the full SHA
    08ae945 View commit details
  2. Merge pull request #27085 from nico202/master

    drumgizmo: 9.12 -> 9.14
    FRidh authored Jul 3, 2017
    Copy the full SHA
    7d36ae3 View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/applications/audio/drumgizmo/default.nix
10 changes: 5 additions & 5 deletions pkgs/applications/audio/drumgizmo/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{ stdenv, fetchurl, alsaLib, expat, glib, libjack2, libX11, libpng
{ stdenv, fetchurl, alsaLib, expat, glib, libjack2, libXext, libX11, libpng
, libpthreadstubs, libsmf, libsndfile, lv2, pkgconfig, zita-resampler
}:

stdenv.mkDerivation rec {
version = "0.9.12";
version = "0.9.14";
name = "drumgizmo-${version}";

src = fetchurl {
url = "http://www.drumgizmo.org/releases/${name}/${name}.tar.gz";
sha256 = "0kqrss9v3vpznmh4jgi3783wmprr645s3i485jlvdscpysjfkh6z";
sha256 = "1q2jghjz0ygaja8dgvxp914if8yyzpa204amdcwb9yyinpxsahz4";
};

configureFlags = [ "--enable-lv2" ];

buildInputs = [
alsaLib expat glib libjack2 libX11 libpng libpthreadstubs libsmf
libsndfile lv2 pkgconfig zita-resampler
alsaLib expat glib libjack2 libXext libX11 libpng libpthreadstubs
libsmf libsndfile lv2 pkgconfig zita-resampler
];

meta = with stdenv.lib; {