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

36 lines
786 B
Nix
Raw Normal View History

2012-08-29 15:16:03 +02:00
{ stdenv, fetchurl, makeWrapper, curl }:
2012-08-26 14:43:25 +02:00
let
v = "20120807";
in stdenv.mkDerivation {
name = "plowshare-git${v}";
src = fetchurl {
url = "http://plowshare.googlecode.com/files/plowshare-snapshot-git${v}.tar.gz";
sha256 = "0clryfssaa4rjvsy760p51ppq1275lwvhm9jh3g4mi973xv4n8si";
};
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
for fn in plow{del,down,list,up}; do
2012-08-30 14:27:03 +02:00
wrapProgram "$out/bin/$fn" --prefix PATH : "${curl}/bin"
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;
2012-08-31 16:01:19 +02:00
maintainers = [ stdenv.lib.maintainers.aforemny ];
2012-08-26 14:43:25 +02:00
};
}