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

Commits on Apr 9, 2020

  1. Copy the full SHA
    577ab2b View commit details
  2. Copy the full SHA
    49e2a18 View commit details
  3. Merge pull request #84775 from r-ryantm/auto-update/libinstpatch

    libinstpatch: 1.1.3 -> 1.1.4
    marsam authored Apr 9, 2020
    Copy the full SHA
    b417d51 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/development/libraries/audio/libinstpatch/default.nix
8 changes: 4 additions & 4 deletions pkgs/development/libraries/audio/libinstpatch/default.nix
Original file line number Diff line number Diff line change
@@ -2,13 +2,13 @@

stdenv.mkDerivation rec {
pname = "libinstpatch";
version = "1.1.3";
version = "1.1.4";

src = fetchFromGitHub {
owner = "swami";
repo = pname;
rev = "v${version}";
sha256 = "0ksilyszcm7mwb6m8qyrgalvh4h2vkyz7wzj0xczcqkj15bcl4lw";
sha256 = "1v7mv43xxwrzi3agrc60agcw46jaidr8ql9kkm1w4jxkf4c6z6dz";
};

nativeBuildInputs = [ cmake pkg-config ];
@@ -20,10 +20,10 @@ stdenv.mkDerivation rec {
];

meta = with stdenv.lib; {
homepage = http://www.swamiproject.org/;
homepage = "http://www.swamiproject.org/";
description = "MIDI instrument patch files support library";
license = licenses.lgpl21;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}