2014-10-19 23:16:59 +00:00
|
|
|
{ stdenv, fetchurl, writeText, zlib, rpmextract, patchelf, which }:
|
2014-08-24 16:52:34 +00:00
|
|
|
|
2013-11-18 10:00:13 +00:00
|
|
|
let
|
|
|
|
p = if stdenv.is64bit then {
|
|
|
|
arch = "x86_64";
|
2016-04-30 20:56:43 +00:00
|
|
|
gcclib = "${stdenv.cc.cc.lib}/lib64";
|
2019-07-21 00:04:20 +00:00
|
|
|
sha256 = "14bpc5ddhxvgfxkxhj5q9z443s7z4nn1zf4k1hxj7rbf13rcpg00";
|
2013-11-18 10:00:13 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
arch = "i386";
|
2016-04-30 20:56:43 +00:00
|
|
|
gcclib = "${stdenv.cc.cc.lib}/lib";
|
2019-05-16 15:57:37 +00:00
|
|
|
sha256 = "1s829q8gy9xgz0jm7w70aljqs2h49x402blqfr9zvn806aprmrm5";
|
2013-11-18 10:00:13 +00:00
|
|
|
};
|
2018-05-03 05:58:11 +00:00
|
|
|
in
|
2013-11-18 10:00:13 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "yandex-disk";
|
2019-07-21 00:04:20 +00:00
|
|
|
version = "0.1.5.1039";
|
2013-11-18 10:00:13 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://repo.yandex.ru/yandex-disk/rpm/stable/${p.arch}/${pname}-${version}-1.fedora.${p.arch}.rpm";
|
2013-11-18 10:00:13 +00:00
|
|
|
sha256 = p.sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
builder = writeText "builder.sh" ''
|
|
|
|
. $stdenv/setup
|
|
|
|
mkdir -pv $out/bin
|
|
|
|
mkdir -pv $out/share
|
|
|
|
mkdir -pv $out/etc
|
|
|
|
|
|
|
|
mkdir -pv unpacked
|
|
|
|
cd unpacked
|
2014-10-19 23:16:59 +00:00
|
|
|
${rpmextract}/bin/rpmextract $src
|
2013-11-18 10:00:13 +00:00
|
|
|
|
|
|
|
cp -r -t $out/bin usr/bin/*
|
|
|
|
cp -r -t $out/share usr/share/*
|
|
|
|
cp -r -t $out/etc etc/*
|
|
|
|
|
2013-12-05 10:39:25 +00:00
|
|
|
sed -i 's@have@${which}/bin/which >/dev/null 2>\&1@' \
|
2013-11-18 10:00:13 +00:00
|
|
|
$out/etc/bash_completion.d/yandex-disk-completion.bash
|
|
|
|
|
|
|
|
${patchelf}/bin/patchelf \
|
2014-12-17 18:11:30 +00:00
|
|
|
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
2016-01-24 07:30:24 +00:00
|
|
|
--set-rpath "${zlib.out}/lib:${p.gcclib}" \
|
2013-11-18 10:00:13 +00:00
|
|
|
$out/bin/yandex-disk
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://help.yandex.com/disk/cli-clients.xml;
|
2015-04-30 15:05:14 +00:00
|
|
|
description = "A free cloud file storage service";
|
2015-08-31 20:56:28 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ smironov jagajaga ];
|
2013-11-18 10:00:13 +00:00
|
|
|
platforms = ["i686-linux" "x86_64-linux"];
|
|
|
|
license = stdenv.lib.licenses.unfree;
|
2013-12-05 10:39:25 +00:00
|
|
|
longDescription = ''
|
|
|
|
Yandex.Disk console client for Linux lets you manage files on Disk without
|
|
|
|
using a window interface or programs that support WebDAV. The advantages
|
|
|
|
of the console client compared to a WebDAV connection:
|
|
|
|
* low system resource requirements;
|
|
|
|
* faster file reading and writing speeds;
|
|
|
|
* faster syncing with Disk's server;
|
|
|
|
* no need to be constantly connected to work with files.
|
|
|
|
'';
|
2013-11-18 10:00:13 +00:00
|
|
|
};
|
|
|
|
}
|