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

Commits on Nov 1, 2018

  1. avldrums-lv2: init at 0.3.0 (#48896)

    magnetophon authored and xeji committed Nov 1, 2018
    Copy the full SHA
    5590565 View commit details
Showing with 32 additions and 0 deletions.
  1. +30 −0 pkgs/applications/audio/avldrums-lv2/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
30 changes: 30 additions & 0 deletions pkgs/applications/audio/avldrums-lv2/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub, pkgconfig, pango, cairo, libGLU, lv2 }:

stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "avldrums.lv2";
version = "0.3.0";

src = fetchFromGitHub {
owner = "x42";
repo = pname;
rev = "v${version}";
sha256 = "0w51gdshq2i5bix2x5l3g3gnycy84nlzf5sj0jkrw0zrnbk6ghwg";
fetchSubmodules = true;
};

installFlags = "PREFIX=$(out)";

nativeBuildInputs = [ pkgconfig ];
buildInputs = [
pango cairo libGLU lv2
];

meta = with stdenv.lib; {
description = "Dedicated AVLDrumkits LV2 Plugin";
homepage = http://x42-plugins.com/x42/x42-avldrums;
license = licenses.gpl2;
maintainers = [ maintainers.magnetophon ];
platforms = [ "i686-linux" "x86_64-linux" ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -577,6 +577,8 @@ with pkgs;

avfs = callPackage ../tools/filesystems/avfs { };

avldrums-lv2 = callPackage ../applications/audio/avldrums-lv2 { };

aws-iam-authenticator = callPackage ../tools/security/aws-iam-authenticator {};

awscli = callPackage ../tools/admin/awscli { };