mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
pkgs/tools/networking/p2p/rtorrent/default.nix: avoid use of "install -D" to make FreeBSD happy
svn path=/nixpkgs/trunk/; revision=30783
This commit is contained in:
parent
6ffd033174
commit
088470ef55
@ -14,7 +14,10 @@ stdenv.mkDerivation {
|
||||
|
||||
buildInputs = [ libtorrent ncurses pkgconfig libsigcxx curl zlib openssl ];
|
||||
|
||||
postInstall = "install -D -m 444 doc/rtorrent.1 $out/share/man/man1/rtorrent.1";
|
||||
postInstall = ''
|
||||
ensureDir $out/share/man/man1
|
||||
mv doc/rtorrent.1 $out/share/man/man1/rtorrent.1
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://libtorrent.rakshasa.no/";
|
||||
|
Loading…
Reference in New Issue
Block a user