mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
bshapr: init at v0.4
This commit is contained in:
parent
cd6974fd24
commit
067a563331
28
pkgs/applications/audio/bshapr/default.nix
Normal file
28
pkgs/applications/audio/bshapr/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchFromGitHub, xorg, cairo, lv2, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "BShapr";
|
||||
version = "0.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sjaehn";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "02b4wdfhr9y7z2k6ls086gv3vz4sjf7b1k8ryh573bzd8nr4896v";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [
|
||||
xorg.libX11 cairo lv2
|
||||
];
|
||||
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/sjaehn/BShapr;
|
||||
description = "Beat / envelope shaper LV2 plugin";
|
||||
maintainers = [ maintainers.magnetophon ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl3;
|
||||
};
|
||||
}
|
@ -17843,6 +17843,8 @@ in
|
||||
|
||||
bslizr = callPackage ../applications/audio/bslizr { };
|
||||
|
||||
bshapr = callPackage ../applications/audio/bshapr { };
|
||||
|
||||
bspwm = callPackage ../applications/window-managers/bspwm { };
|
||||
|
||||
btops = callPackage ../applications/window-managers/btops { };
|
||||
|
Loading…
Reference in New Issue
Block a user