-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GitHub-CI/build_nix_NixOS-stable, nix/default.nix: add nix package an…
…d CI build
- Loading branch information
Showing
2 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# build with: | ||
# nix-build --expr 'let pkgs = import <nixpkgs> { }; in pkgs.callPackage ./default.nix { }' | ||
{ stdenv, pkgs | ||
, autoconf, automake, itstool, intltool, pkg-config | ||
, glib | ||
, gettext | ||
, mono | ||
, stfl | ||
, makeWrapper, lib | ||
, guiSupport ? true | ||
, gtk-sharp-2_0 | ||
, gdk-pixbuf, gnome2 # these libraries are loaded/needed at runtime | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "smuxi"; | ||
version = "1.2.1"; | ||
runtimeLoaderEnvVariableName = if stdenv.isDarwin then | ||
"DYLD_FALLBACK_LIBRARY_PATH" | ||
else | ||
"LD_LIBRARY_PATH"; | ||
|
||
src = fetchGit { | ||
url = "https://github.com/meebey/smuxi.git"; | ||
ref = "master"; | ||
submodules = true; | ||
}; | ||
|
||
nativeBuildInputs = [ pkg-config ]; | ||
buildInputs = [ autoconf automake itstool intltool gettext | ||
mono | ||
stfl | ||
makeWrapper ] ++ lib.optionals (guiSupport) [ | ||
gtk-sharp-2_0 | ||
# loaded at runtime by GTK# | ||
gdk-pixbuf gnome2.pango | ||
]; | ||
|
||
preConfigure = '' | ||
NOCONFIGURE=1 NOGIT=1 ./autogen.sh | ||
''; | ||
configureFlags = [ | ||
"--disable-frontend-gnome" | ||
"--enable-frontend-stfl" | ||
] ++ lib.optional guiSupport "--enable-frontend-gnome"; | ||
postInstall = '' | ||
makeWrapper "${mono}/bin/mono" "$out/bin/smuxi-message-buffer" \ | ||
--add-flags "$out/lib/smuxi/smuxi-message-buffer.exe" \ | ||
--prefix ${runtimeLoaderEnvVariableName} : ${lib.makeLibraryPath [ | ||
gettext | ||
]} | ||
makeWrapper "${mono}/bin/mono" "$out/bin/smuxi-server" \ | ||
--add-flags "$out/lib/smuxi/smuxi-server.exe" \ | ||
--prefix ${runtimeLoaderEnvVariableName} : ${lib.makeLibraryPath [ | ||
gettext | ||
]} | ||
makeWrapper "${mono}/bin/mono" "$out/bin/smuxi-frontend-stfl" \ | ||
--add-flags "$out/lib/smuxi/smuxi-frontend-stfl.exe" \ | ||
--prefix ${runtimeLoaderEnvVariableName} : ${lib.makeLibraryPath [ | ||
gettext stfl | ||
]} | ||
makeWrapper "${mono}/bin/mono" "$out/bin/smuxi-frontend-gnome" \ | ||
--add-flags "$out/lib/smuxi/smuxi-frontend-gnome.exe" \ | ||
--prefix MONO_GAC_PREFIX : ${if guiSupport then gtk-sharp-2_0 else ""} \ | ||
--prefix ${runtimeLoaderEnvVariableName} : ${lib.makeLibraryPath [ | ||
gettext | ||
glib | ||
gtk-sharp-2_0 gtk-sharp-2_0.gtk gdk-pixbuf gnome2.pango | ||
]} | ||
# install log4net and nini libraries | ||
mkdir -p $out/lib/smuxi/ | ||
cp -a lib/log4net.dll $out/lib/smuxi/ | ||
cp -a lib/Nini.dll $out/lib/smuxi/ | ||
# install GTK+ icon theme on Darwin | ||
${if guiSupport && stdenv.isDarwin then " | ||
mkdir -p $out/lib/smuxi/icons/ | ||
cp -a images/Smuxi-Symbolic $out/lib/smuxi/icons/ | ||
" else ""} | ||
''; | ||
|
||
meta = with lib; { | ||
homepage = "https://smuxi.im/"; | ||
downloadPage = "https://smuxi.im/download/"; | ||
changelog = "https://github.com/meebey/smuxi/releases/tag/v${version}"; | ||
description = "WRITE ME"; | ||
platforms = platforms.unix; # Smuxi is supported on Linux, *BSD and MacOS | ||
license = lib.licenses.gpl2Plus; | ||
maintainers = [ | ||
"Mirco Bauer <[email protected]>" | ||
]; | ||
}; | ||
} |