mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
treewide: fix missing libs after libtool pruning #51767
This commit is contained in:
parent
7455889641
commit
64edccb463
@ -14,6 +14,8 @@ stdenv.mkDerivation {
|
|||||||
buildInputs = [ fftwFloat gtk2 ladspaPlugins libjack2 liblo libxml2 makeWrapper ]
|
buildInputs = [ fftwFloat gtk2 ladspaPlugins libjack2 liblo libxml2 makeWrapper ]
|
||||||
++ (with perlPackages; [ perl XMLParser ]);
|
++ (with perlPackages; [ perl XMLParser ]);
|
||||||
|
|
||||||
|
NIX_LDFLAGS = [ "-ldl" ];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
wrapProgram $out/bin/jamin --set LADSPA_PATH ${ladspaPlugins}/lib/ladspa
|
wrapProgram $out/bin/jamin --set LADSPA_PATH ${ladspaPlugins}/lib/ladspa
|
||||||
'';
|
'';
|
||||||
|
@ -15,4 +15,6 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ gtk intltool GConf enchant isocodes gnome_icon_theme ];
|
buildInputs = [ gtk intltool GConf enchant isocodes gnome_icon_theme ];
|
||||||
|
|
||||||
|
NIX_LDFLAGS = [ "-lgthread-2.0" ];
|
||||||
}
|
}
|
||||||
|
@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
NIX_LDFLAGS = [ "-lsqlite3" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A complete sqlite3-compatible CLI front-end for libspatialite";
|
description = "A complete sqlite3-compatible CLI front-end for libspatialite";
|
||||||
homepage = https://www.gaia-gis.it/fossil/spatialite-tools;
|
homepage = https://www.gaia-gis.it/fossil/spatialite-tools;
|
||||||
|
@ -87,7 +87,7 @@ in releaseTools.nixBuild rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ makeWrapper autoconf automake libtool unzip nukeReferences pkgconfig sqlite libpqxx
|
[ makeWrapper autoconf automake libtool unzip nukeReferences sqlite libpqxx
|
||||||
gitAndTools.topGit mercurial darcs subversion bazaar openssl bzip2 libxslt
|
gitAndTools.topGit mercurial darcs subversion bazaar openssl bzip2 libxslt
|
||||||
guile # optional, for Guile + Guix support
|
guile # optional, for Guile + Guix support
|
||||||
perlDeps perl nix
|
perlDeps perl nix
|
||||||
@ -100,7 +100,7 @@ in releaseTools.nixBuild rec {
|
|||||||
gzip bzip2 lzma gnutar unzip git gitAndTools.topGit mercurial darcs gnused bazaar
|
gzip bzip2 lzma gnutar unzip git gitAndTools.topGit mercurial darcs gnused bazaar
|
||||||
] ++ lib.optionals stdenv.isLinux [ rpm dpkg cdrkit ] );
|
] ++ lib.optionals stdenv.isLinux [ rpm dpkg cdrkit ] );
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
|
|
||||||
# adds a patch which ensures compatibility with the API of Nix 2.0.
|
# adds a patch which ensures compatibility with the API of Nix 2.0.
|
||||||
# it has been reverted in https://github.com/NixOS/hydra/commit/162d671c48a418bd10a8a171ca36787ef3695a44,
|
# it has been reverted in https://github.com/NixOS/hydra/commit/162d671c48a418bd10a8a171ca36787ef3695a44,
|
||||||
@ -114,6 +114,8 @@ in releaseTools.nixBuild rec {
|
|||||||
|
|
||||||
configureFlags = [ "--with-docbook-xsl=${docbook_xsl}/xml/xsl/docbook" ];
|
configureFlags = [ "--with-docbook-xsl=${docbook_xsl}/xml/xsl/docbook" ];
|
||||||
|
|
||||||
|
NIX_CFLAGS_COMPILE = [ "-pthread" ];
|
||||||
|
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
PATH=$(pwd)/src/script:$(pwd)/src/hydra-eval-jobs:$(pwd)/src/hydra-queue-runner:$(pwd)/src/hydra-evaluator:$PATH
|
PATH=$(pwd)/src/script:$(pwd)/src/hydra-eval-jobs:$(pwd)/src/hydra-queue-runner:$(pwd)/src/hydra-evaluator:$PATH
|
||||||
PERL5LIB=$(pwd)/src/lib:$PERL5LIB;
|
PERL5LIB=$(pwd)/src/lib:$PERL5LIB;
|
||||||
|
@ -33,6 +33,8 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
makeFlags = [ "DESTDIR=$(out)" ];
|
makeFlags = [ "DESTDIR=$(out)" ];
|
||||||
|
|
||||||
|
NIX_LDFLAGS = [ "-lX11" ];
|
||||||
|
|
||||||
postInstall =
|
postInstall =
|
||||||
''
|
''
|
||||||
mkdir -p $out/share/exult/music
|
mkdir -p $out/share/exult/music
|
||||||
|
@ -18,6 +18,8 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
NIX_LDFLAGS = [ "-lX11" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Mascot Constructive Pilot for X";
|
description = "Mascot Constructive Pilot for X";
|
||||||
homepage = http://rosegray.sakura.ne.jp/macopix/index-e.html;
|
homepage = http://rosegray.sakura.ne.jp/macopix/index-e.html;
|
||||||
|
Loading…
Reference in New Issue
Block a user