sourcetrail: 2019.1.11 -> 2019.2.39
This commit is contained in:
parent
265d3bc1d6
commit
cf3948fbe0
@ -1,18 +1,18 @@
|
|||||||
{ stdenv, fetchurl, autoPatchelfHook
|
{ stdenv, fetchurl, autoPatchelfHook
|
||||||
, zlib, expat, dbus, openssl}:
|
, zlib, expat, dbus, openssl, python3 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "sourcetrail-${version}";
|
name = "sourcetrail-${version}";
|
||||||
version = "2019.1.11";
|
version = "2019.2.39";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
name = "sourtrail.tar.gz";
|
name = "sourtrail.tar.gz";
|
||||||
url = "https://www.sourcetrail.com/downloads/${version}/linux/64bit";
|
url = "https://www.sourcetrail.com/downloads/${version}/linux/64bit";
|
||||||
sha256 = "09f3qdgdqg6dlai43050qh4iv1d4j43isk81q68swalpnvjn72w0";
|
sha256 = "13kzfnsb5lf9v6bqw41qljp5bgz2rd3w163r6xg59hzd3dv8f90q";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoPatchelfHook ];
|
nativeBuildInputs = [ autoPatchelfHook ];
|
||||||
buildInputs = [ zlib expat dbus stdenv.cc.cc openssl ];
|
buildInputs = [ zlib expat dbus stdenv.cc.cc openssl python3 ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
@ -38,28 +38,30 @@ stdenv.mkDerivation rec {
|
|||||||
--replace /usr/bin/ $out/bin/
|
--replace /usr/bin/ $out/bin/
|
||||||
|
|
||||||
cat <<EOF > $out/bin/sourcetrail
|
cat <<EOF > $out/bin/sourcetrail
|
||||||
#! ${stdenv.shell} -e
|
#! ${stdenv.shell} -e
|
||||||
|
|
||||||
# XXX: Sourcetrail somehow copies the initial config files into the home
|
# XXX: Sourcetrail somehow copies the initial config files into the home
|
||||||
# directory without write permissions. We currently just copy them
|
# directory without write permissions. We currently just copy them
|
||||||
# ourselves to work around this problem.
|
# ourselves to work around this problem.
|
||||||
setup_config() {
|
setup_config() {
|
||||||
local src dst
|
local src dst
|
||||||
|
|
||||||
[ ! -d ~/.config/sourcetrail ] && mkdir -p ~/.config/sourcetrail
|
[ ! -d ~/.config/sourcetrail ] && mkdir -p ~/.config/sourcetrail
|
||||||
for src in $out/opt/data/fallback/*; do
|
for src in $out/opt/data/fallback/*; do
|
||||||
dst=~/.config/sourcetrail/"\$(basename "\$src")"
|
dst=~/.config/sourcetrail/"\$(basename "\$src")"
|
||||||
if [ ! -e "\$dst" ]; then
|
if [ ! -e "\$dst" ]; then
|
||||||
cp -r "\$src" "\$dst"
|
cp -r "\$src" "\$dst"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
chmod -R u+w ~/.config/sourcetrail
|
chmod -R u+w ~/.config/sourcetrail
|
||||||
}
|
}
|
||||||
|
|
||||||
[ -d "\$HOME" ] && setup_config
|
[ -d "\$HOME" ] && setup_config
|
||||||
exec "$out/opt/Sourcetrail.sh" "\$@"
|
export PATH="\$PATH:${python3}/bin"
|
||||||
|
exec "$out/opt/Sourcetrail.sh" "\$@"
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
chmod +x $out/bin/sourcetrail
|
chmod +x $out/bin/sourcetrail
|
||||||
|
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
|
Loading…
x
Reference in New Issue
Block a user