nixpkgs/pkgs/tools/misc/plowshare/default.nix

36 lines
919 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, makeWrapper, curl, recode, spidermonkey_38 }:
2012-08-26 14:43:25 +02:00
2012-09-25 17:44:57 +02:00
stdenv.mkDerivation rec {
2012-08-26 14:43:25 +02:00
pname = "plowshare";
2017-08-18 09:16:29 +02:00
version = "2.1.7";
2012-08-26 14:43:25 +02:00
src = fetchFromGitHub {
owner = "mcrapet";
repo = "plowshare";
rev = "v${version}";
2017-08-18 09:16:29 +02:00
sha256 = "1p8s60dlzaldp006yj710s371aan915asyjhd99188vrj4jj1x79";
2012-08-26 14:43:25 +02:00
};
2012-08-31 16:02:10 +02:00
buildInputs = [ makeWrapper ];
2012-08-26 14:43:25 +02:00
2012-08-29 15:16:03 +02:00
phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
2012-08-26 14:43:25 +02:00
2012-08-29 15:16:03 +02:00
installPhase = ''
make PREFIX="$out" install
2017-06-28 17:07:15 +02:00
for fn in plow{del,down,list,mod,probe,up}; do
wrapProgram "$out/bin/$fn" --prefix PATH : "${stdenv.lib.makeBinPath [ curl recode spidermonkey_38 ]}"
2012-08-29 15:16:03 +02:00
done
2012-08-26 14:43:25 +02:00
'';
meta = {
description = ''
A command-line download/upload tool for popular file sharing websites
'';
license = stdenv.lib.licenses.gpl3;
2017-06-28 17:07:15 +02:00
maintainers = with stdenv.lib.maintainers; [ aforemny jfrankenau ];
platforms = stdenv.lib.platforms.linux;
2012-08-26 14:43:25 +02:00
};
}