nixpkgs/pkgs/tools/misc/staruml/default.nix

55 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, makeWrapper
, dpkg, patchelf
2019-05-22 11:03:39 +00:00
, gtk2, glib, gdk-pixbuf, alsaLib, nss, nspr, GConf, cups, libgcrypt, dbus, systemd
2019-04-28 11:59:51 +00:00
, libXdamage, expat }:
2016-02-21 18:34:30 +00:00
let
LD_LIBRARY_PATH = lib.makeLibraryPath
2019-05-22 11:03:39 +00:00
[ glib gtk2 gdk-pixbuf alsaLib nss nspr GConf cups libgcrypt dbus libXdamage expat ];
in
2016-02-21 18:34:30 +00:00
stdenv.mkDerivation rec {
2018-05-15 12:56:43 +00:00
version = "2.8.1";
pname = "staruml";
2016-02-21 18:34:30 +00:00
src =
if stdenv.hostPlatform.system == "i686-linux" then fetchurl {
2018-10-15 08:22:54 +00:00
url = "https://s3.amazonaws.com/staruml-bucket/releases-v2/StarUML-v${version}-32-bit.deb";
2018-05-15 12:56:43 +00:00
sha256 = "0vb3k9m3l6pmsid4shlk0xdjsriq3gxzm8q7l04didsppg0vvq1n";
2016-02-21 18:34:30 +00:00
} else fetchurl {
2018-10-15 08:22:54 +00:00
url = "https://s3.amazonaws.com/staruml-bucket/releases-v2/StarUML-v${version}-64-bit.deb";
2018-05-15 12:56:43 +00:00
sha256 = "05gzrnlssjkhyh0wv019d4r7p40lxnsa1sghazll6f233yrqmxb0";
2016-02-21 18:34:30 +00:00
};
nativeBuildInputs = [ makeWrapper dpkg ];
2016-02-21 18:34:30 +00:00
unpackPhase = ''
mkdir pkg
dpkg-deb -x $src pkg
sourceRoot=pkg
'';
2016-02-21 18:34:30 +00:00
installPhase = ''
mkdir $out
mv opt/staruml $out/bin
mkdir -p $out/lib
2016-04-30 20:56:43 +00:00
ln -s ${stdenv.cc.cc.lib}/lib/libstdc++.so.6 $out/lib/
ln -s ${lib.getLib systemd}/lib/libudev.so.1 $out/lib/libudev.so.0
2016-02-21 18:34:30 +00:00
for binary in StarUML Brackets-node; do
${patchelf}/bin/patchelf \
--interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
$out/bin/$binary
wrapProgram $out/bin/$binary \
--prefix LD_LIBRARY_PATH : $out/lib:${LD_LIBRARY_PATH}
done
2016-02-21 18:34:30 +00:00
'';
meta = with lib; {
2016-02-21 18:34:30 +00:00
description = "A sophisticated software modeler";
homepage = "https://staruml.io/";
2016-02-21 18:34:30 +00:00
license = licenses.unfree;
platforms = [ "i686-linux" "x86_64-linux" ];
};
}