mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
string-machine: init at unstable-2020-01-20
This commit is contained in:
parent
d24a439d92
commit
376d7878c2
36
pkgs/applications/audio/string-machine/default.nix
Normal file
36
pkgs/applications/audio/string-machine/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ stdenv, fetchFromGitHub, boost, cairo, lv2, pkg-config }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "string-machine";
|
||||
version = "unstable-2020-01-20";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jpcima";
|
||||
repo = pname;
|
||||
rev = "188082dd0beb9a3c341035604841c53675fe66c4";
|
||||
sha256 = "0l9xrzp3f0hk6h320qh250a0n1nbd6qhjmab21sjmrlb4ngy672v";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs ./dpf/utils/generate-ttl.sh
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
buildInputs = [
|
||||
boost cairo lv2
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=$(out)"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/jpcima/string-machine";
|
||||
description = "Digital model of electronic string ensemble instrument";
|
||||
maintainers = [ maintainers.magnetophon ];
|
||||
platforms = intersectLists platforms.linux platforms.x86;
|
||||
license = licenses.boost;
|
||||
};
|
||||
}
|
@ -2062,6 +2062,8 @@ in
|
||||
|
||||
step-cli = callPackage ../tools/security/step-cli { };
|
||||
|
||||
string-machine = callPackage ../applications/audio/string-machine { };
|
||||
|
||||
bash-supergenpass = callPackage ../tools/security/bash-supergenpass { };
|
||||
|
||||
sweep-visualizer = callPackage ../tools/misc/sweep-visualizer { };
|
||||
|
Loading…
Reference in New Issue
Block a user