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: 9e7d5d9af47a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 98a3c772969e
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Sep 11, 2020

  1. Verified

    This commit was signed with the committer’s verified signature.
    benjamn Ben Newman
    Copy the full SHA
    98a3c77 View commit details
Showing with 37 additions and 0 deletions.
  1. +35 −0 pkgs/applications/audio/seq66/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
35 changes: 35 additions & 0 deletions pkgs/applications/audio/seq66/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, qttools, which
, alsaLib, libjack2, liblo, qtbase
}:

stdenv.mkDerivation rec {
pname = "seq66";
version = "0.90.5";

src = fetchFromGitHub {
owner = "ahlstromcj";
repo = pname;
rev = version;
sha256 = "1jvra1wzlycfpvffnqidk264zw6fyl4fsghkw5256ldk22aalmq9";
};

nativeBuildInputs = [ autoreconfHook pkg-config qttools which ];

buildInputs = [ alsaLib libjack2 liblo qtbase ];

postPatch = ''
for d in libseq66/include libseq66/src libsessions/include libsessions/src seq_qt5/src seq_rtmidi/include seq_rtmidi/src Seqtool/src; do
substituteInPlace "$d/Makefile.am" --replace '$(git_info)' '${version}'
done
'';

enableParallelBuilding = true;

meta = with stdenv.lib; {
homepage = "https://github.com/ahlstromcj/seq66";
description = "Loop based midi sequencer with Qt GUI derived from seq24 and sequencer64";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -22945,6 +22945,8 @@ in

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

seq66 = qt5.callPackage ../applications/audio/seq66 { };

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

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