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

Commits on Oct 23, 2019

  1. qsampler: 0.5.6 -> 0.6.0

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/qsampler/versions
    r-ryantm committed Oct 23, 2019
    Copy the full SHA
    a3c1c9c View commit details

Commits on Nov 1, 2019

  1. qsampler: using mkDerivation

    mmahut committed Nov 1, 2019
    Copy the full SHA
    89a4607 View commit details
  2. Merge pull request #71863 from r-ryantm/auto-update/qsampler

    qsampler: 0.5.6 -> 0.6.0
    mmahut authored Nov 1, 2019
    Copy the full SHA
    87955cb View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/audio/qsampler/default.nix
8 changes: 4 additions & 4 deletions pkgs/applications/audio/qsampler/default.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig, qttools
, liblscp, libgig, qtbase }:
, liblscp, libgig, qtbase, mkDerivation }:

stdenv.mkDerivation rec {
mkDerivation rec {
pname = "qsampler";
version = "0.5.6";
version = "0.6.0";

src = fetchurl {
url = "mirror://sourceforge/qsampler/${pname}-${version}.tar.gz";
sha256 = "0lx2mzyajmjckwfvgf8p8bahzpj0n0lflyip41jk32nwd2hzjhbs";
sha256 = "1krhjyd67hvnv6sgndwq81lfvnb4qkhc7da1119fn2lzl7hx9wh3";
};

nativeBuildInputs = [ autoconf automake libtool pkgconfig qttools ];