nixpkgs/pkgs/tools/misc/trash-cli/default.nix

38 lines
943 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, fetchpatch, coreutils
, python3Packages, substituteAll }:
2017-03-03 01:44:17 +00:00
python3Packages.buildPythonApplication rec {
2020-03-29 10:34:50 +00:00
pname = "trash-cli";
2020-11-11 17:56:41 +00:00
version = "0.20.11.7";
2014-12-23 07:35:26 +00:00
2017-03-03 01:44:17 +00:00
src = fetchFromGitHub {
owner = "andreafrancia";
repo = "trash-cli";
2019-09-08 23:38:31 +00:00
rev = version;
2020-11-11 17:56:41 +00:00
sha256 = "0083vagy0jkahb5sw1il7r53ggk45zbjwwjsqd76v7ph3v1awf4v";
2014-12-23 07:35:26 +00:00
};
patches = [
(substituteAll {
src = ./nix-paths.patch;
df = "${coreutils}/bin/df";
2018-06-11 10:26:52 +00:00
libc = let ext = if stdenv.isDarwin then ".dylib" else ".so.6";
in "${stdenv.cc.libc}/lib/libc${ext}";
})
2014-12-23 07:35:26 +00:00
];
checkInputs = with python3Packages; [
nose
mock
];
2014-12-23 07:35:26 +00:00
checkPhase = "nosetests";
meta = with stdenv.lib; {
homepage = "https://github.com/andreafrancia/trash-cli";
2014-12-23 07:35:26 +00:00
description = "Command line tool for the desktop trash can";
maintainers = [ maintainers.rycee ];
2018-06-11 10:26:52 +00:00
platforms = platforms.unix;
2014-12-23 07:35:26 +00:00
license = licenses.gpl2;
};
}