mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
43 lines
1.5 KiB
Nix
43 lines
1.5 KiB
Nix
{ stdenv, fetchurl, qt4, qmake4Hook, muparser, which, boost, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.1.3";
|
|
pname = "librecad";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/LibreCAD/LibreCAD/tarball/${version}";
|
|
name = "${pname}-${version}" + ".tar.gz";
|
|
sha256 = "1czp8bja61hfav2m7184cq1np1n76w3w6vn0hlkp81hhz9zc62sx";
|
|
};
|
|
|
|
patchPhase = ''
|
|
sed -i -e s,/bin/bash,`type -P bash`, scripts/postprocess-unix.sh
|
|
sed -i -e s,/usr/share,$out/share, librecad/src/lib/engine/rs_system.cpp
|
|
'';
|
|
|
|
qmakeFlags = [ "MUPARSER_DIR=${muparser}" "BOOST_DIR=${boost.dev}" ];
|
|
|
|
installPhase = ''
|
|
install -m 555 -D unix/librecad $out/bin/librecad
|
|
install -m 444 -D desktop/librecad.desktop $out/share/applications/librecad.desktop
|
|
install -m 444 -D desktop/librecad.sharedmimeinfo $out/share/mime/packages/librecad.xml
|
|
install -m 444 -D desktop/graphics_icons_and_splash/Icon\ LibreCAD/Icon_Librecad.svg \
|
|
$out/share/icons/hicolor/scalable/apps/librecad.svg
|
|
cp -R unix/resources $out/share/librecad
|
|
'';
|
|
|
|
buildInputs = [ qt4 muparser which boost ];
|
|
nativeBuildInputs = [ pkgconfig qmake4Hook ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
description = "A 2D CAD package based upon Qt";
|
|
homepage = https://librecad.org;
|
|
repositories.git = git://github.com/LibreCAD/LibreCAD.git;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|