mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #202927 from dotlambda/klick-0.14.2
klick: 0.12.2 -> 0.14.2
This commit is contained in:
commit
40d9e10511
1 changed files with 23 additions and 8 deletions
|
@ -1,19 +1,34 @@
|
||||||
{ lib, stdenv, fetchurl, sconsPackages, pkg-config
|
{ lib
|
||||||
, libsamplerate, libsndfile, liblo, libjack2, boost }:
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pkg-config
|
||||||
|
, sconsPackages
|
||||||
|
, rubberband
|
||||||
|
, boost
|
||||||
|
, libjack2
|
||||||
|
, liblo
|
||||||
|
, libsamplerate
|
||||||
|
, libsndfile
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "klick";
|
pname = "klick";
|
||||||
version = "0.12.2";
|
version = "0.14.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://das.nasophon.de/download/${pname}-${version}.tar.gz";
|
owner = "Allfifthstuning";
|
||||||
sha256 = "1289533c0849b1b66463bf27f7ce5f71736b655cfb7672ef884c7e6eb957ac42";
|
repo = "klick";
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-jHyeVCmyy9ipbVaF7GSW19DOVpU9EQJoLcGq9uos+eY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ sconsPackages.scons_3_0_1 pkg-config ];
|
nativeBuildInputs = [
|
||||||
|
pkg-config
|
||||||
|
rubberband
|
||||||
|
sconsPackages.scons_latest
|
||||||
|
];
|
||||||
buildInputs = [ libsamplerate libsndfile liblo libjack2 boost ];
|
buildInputs = [ libsamplerate libsndfile liblo libjack2 boost ];
|
||||||
prefixKey = "PREFIX=";
|
prefixKey = "PREFIX=";
|
||||||
NIX_CFLAGS_COMPILE = "-fpermissive";
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://das.nasophon.de/klick/";
|
homepage = "http://das.nasophon.de/klick/";
|
||||||
|
|
Loading…
Reference in a new issue