2018-05-03 06:32:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, python3, python3Packages
|
|
|
|
, lib, makeWrapper, coreutils }:
|
2014-12-23 10:30:56 +00:00
|
|
|
|
2017-03-03 01:44:17 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2014-12-23 07:35:26 +00:00
|
|
|
name = "trash-cli-${version}";
|
2017-03-03 01:44:17 +00:00
|
|
|
version = "0.17.1.14";
|
2014-12-23 07:35:26 +00:00
|
|
|
namePrefix = "";
|
|
|
|
|
2017-03-03 01:44:17 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "andreafrancia";
|
|
|
|
repo = "trash-cli";
|
|
|
|
rev = "${version}";
|
|
|
|
sha256 = "1bqazna223ibqjwbc1wfvfnspfyrvjy8347qlrgv4cpng72n7gfi";
|
2014-12-23 07:35:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
2017-06-02 23:37:48 +01:00
|
|
|
# Fix build on Python 3.6.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/andreafrancia/trash-cli/commit/a21b80d1e69783bb09376c3f60dd2f2a10578805.patch";
|
|
|
|
sha256 = "0w49rjh433sjfc2cl5a9wlbr6kcn9f1qg905qsyv7ay3ar75wvyp";
|
|
|
|
})
|
2014-12-23 07:35:26 +00:00
|
|
|
];
|
|
|
|
|
2017-03-03 01:44:17 +00:00
|
|
|
buildInputs = with python3Packages; [ nose mock ];
|
2018-05-03 06:32:44 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
for bin in $out/bin/*; do
|
|
|
|
wrapProgram $bin \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ coreutils ]} \
|
|
|
|
--prefix DYLD_LIBRARY_PATH : ${lib.makeSearchPath "lib" (lib.optional (stdenv.hostPlatform.libc == "glibc") (lib.getDev stdenv.cc.libc))}
|
|
|
|
done
|
|
|
|
'';
|
2014-12-23 07:35:26 +00:00
|
|
|
|
|
|
|
checkPhase = "nosetests";
|
|
|
|
|
2018-05-03 06:32:44 +01:00
|
|
|
meta = with lib; {
|
2014-12-23 07:35:26 +00:00
|
|
|
homepage = https://github.com/andreafrancia/trash-cli;
|
|
|
|
description = "Command line tool for the desktop trash can";
|
2016-02-10 13:59:36 +00:00
|
|
|
maintainers = [ maintainers.rycee ];
|
2016-05-22 15:06:06 +01:00
|
|
|
platforms = platforms.all;
|
2014-12-23 07:35:26 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
};
|
|
|
|
}
|