mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-24 20:02:58 +03:00
jucipp: init at 1.2.3 (#24788)
* jucipp: init at 1.2.3 * jucipp: removed imagemagick dependency was used earlier during package development to raster the icon, decided it was better to wait for svgs to get fixed, forgot to clean * juicipp: fix static libraries weren't linking
This commit is contained in:
parent
c2130eca44
commit
73a21ae6c9
73
pkgs/applications/editors/jucipp/default.nix
Normal file
73
pkgs/applications/editors/jucipp/default.nix
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
{ config, stdenv, fetchgit, makeWrapper, gnome3, at_spi2_core, libcxx,
|
||||||
|
boost, epoxy, cmake, aspell, llvmPackages, libgit2, pkgconfig, pcre,
|
||||||
|
libXdmcp, libxkbcommon, libpthreadstubs, wrapGAppsHook, aspellDicts,
|
||||||
|
coreutils, glibc, dbus_libs, openssl, libxml2, gnumake, binutils, ctags }:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "juicipp-${version}";
|
||||||
|
version = "1.2.3";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/cppit/jucipp;
|
||||||
|
description = "A lightweight, platform independent C++-IDE with support for C++11, C++14, and experimental C++17 features depending on libclang version";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ xnwdd ];
|
||||||
|
};
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/cppit/jucipp.git";
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
deepClone = true;
|
||||||
|
sha256 = "0xp6ijnrggskjrvscp204bmdpz48l5a8nxr9abp17wni6akb5wiq";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
||||||
|
buildInputs = [
|
||||||
|
dbus_libs
|
||||||
|
openssl
|
||||||
|
libxml2
|
||||||
|
gnome3.gtksourceview
|
||||||
|
at_spi2_core
|
||||||
|
pcre
|
||||||
|
epoxy
|
||||||
|
boost
|
||||||
|
libXdmcp
|
||||||
|
cmake
|
||||||
|
aspell
|
||||||
|
libgit2
|
||||||
|
libxkbcommon
|
||||||
|
gnome3.gtkmm3
|
||||||
|
libpthreadstubs
|
||||||
|
gnome3.gtksourceviewmm
|
||||||
|
llvmPackages.clang.cc
|
||||||
|
llvmPackages.lldb
|
||||||
|
gnome3.dconf
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
lintIncludes = let
|
||||||
|
p = "arguments.emplace_back(\"-I";
|
||||||
|
e = "\");";
|
||||||
|
v = stdenv.lib.getVersion llvmPackages.clang;
|
||||||
|
in
|
||||||
|
p+llvmPackages.libcxx+"/include/c++/v1"+e
|
||||||
|
+p+llvmPackages.clang-unwrapped+"/lib/clang/"+v+"/include/"+e
|
||||||
|
+p+glibc.dev+"/include"+e;
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
sed -i 's|liblldb LIBLLDB_LIBRARIES|liblldb LIBNOTHING|g' CMakeLists.txt
|
||||||
|
sed -i 's|> arguments;|> arguments; ${lintIncludes}|g' src/source_clang.cc
|
||||||
|
'';
|
||||||
|
cmakeFlags = "-DLIBLLDB_LIBRARIES=${stdenv.lib.makeLibraryPath [ llvmPackages.lldb ]}/liblldb.so";
|
||||||
|
postInstall = ''
|
||||||
|
mv $out/bin/juci $out/bin/.juci
|
||||||
|
makeWrapper "$out/bin/.juci" "$out/bin/juci" \
|
||||||
|
--set PATH "${stdenv.lib.makeBinPath [ ctags coreutils llvmPackages.clang.cc cmake gnumake binutils llvmPackages.clang ]}" \
|
||||||
|
--set NO_AT_BRIDGE 1 \
|
||||||
|
--set ASPELL_CONF "dict-dir ${aspellDicts.en}/lib/aspell"
|
||||||
|
'';
|
||||||
|
|
||||||
|
}
|
@ -2491,6 +2491,8 @@ with pkgs;
|
|||||||
|
|
||||||
jsduck = callPackage ../development/tools/jsduck { };
|
jsduck = callPackage ../development/tools/jsduck { };
|
||||||
|
|
||||||
|
jucipp = callPackage ../applications/editors/jucipp { };
|
||||||
|
|
||||||
jwhois = callPackage ../tools/networking/jwhois { };
|
jwhois = callPackage ../tools/networking/jwhois { };
|
||||||
|
|
||||||
k2pdfopt = callPackage ../applications/misc/k2pdfopt { };
|
k2pdfopt = callPackage ../applications/misc/k2pdfopt { };
|
||||||
|
Loading…
Reference in New Issue
Block a user