mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
tonelib-jam: fixed runtimeDependencies
This commit is contained in:
parent
da87aef532
commit
e9092c24c4
|
@ -12,6 +12,7 @@
|
|||
, fribidi
|
||||
, pango
|
||||
, freetype
|
||||
, curl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -50,6 +51,10 @@ stdenv.mkDerivation rec {
|
|||
mv $out/bin/ToneLib-Jam $out/bin/tonelib-jam
|
||||
'';
|
||||
|
||||
runtimeDependencies = [
|
||||
(lib.getLib curl)
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "ToneLib Jam – the learning and practice software for guitar players";
|
||||
homepage = "https://tonelib.net/";
|
||||
|
|
Loading…
Reference in a new issue