2021-03-21 02:18:27 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, makeWrapper, curl, recode, spidermonkey_78 }:
|
2012-08-26 13:43:25 +01:00
|
|
|
|
2012-09-25 16:44:57 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2012-08-26 13:43:25 +01:00
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "plowshare";
|
2017-08-18 08:16:29 +01:00
|
|
|
version = "2.1.7";
|
2012-08-26 13:43:25 +01:00
|
|
|
|
2015-08-15 11:42:22 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mcrapet";
|
|
|
|
repo = "plowshare";
|
|
|
|
rev = "v${version}";
|
2017-08-18 08:16:29 +01:00
|
|
|
sha256 = "1p8s60dlzaldp006yj710s371aan915asyjhd99188vrj4jj1x79";
|
2012-08-26 13:43:25 +01:00
|
|
|
};
|
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2012-08-26 13:43:25 +01:00
|
|
|
|
2021-07-20 15:58:42 +01:00
|
|
|
dontBuild = true;
|
2012-08-26 13:43:25 +01:00
|
|
|
|
2012-08-29 14:16:03 +01:00
|
|
|
installPhase = ''
|
|
|
|
make PREFIX="$out" install
|
|
|
|
|
2017-06-28 16:07:15 +01:00
|
|
|
for fn in plow{del,down,list,mod,probe,up}; do
|
2021-03-21 02:18:27 +00:00
|
|
|
wrapProgram "$out/bin/$fn" --prefix PATH : "${lib.makeBinPath [ curl recode spidermonkey_78 ]}"
|
2012-08-29 14:16:03 +01:00
|
|
|
done
|
2012-08-26 13:43:25 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''
|
|
|
|
A command-line download/upload tool for popular file sharing websites
|
|
|
|
'';
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl3;
|
|
|
|
maintainers = with lib.maintainers; [ aforemny jfrankenau ];
|
|
|
|
platforms = lib.platforms.linux;
|
2012-08-26 13:43:25 +01:00
|
|
|
};
|
|
|
|
}
|