mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
copy-com: remove deprecated Nix-specific alias
This commit is contained in:
parent
8f793ce6bb
commit
4a860b8fbf
@ -44,25 +44,19 @@ in stdenv.mkDerivation {
|
||||
patchelf --set-interpreter ${stdenv.glibc}/lib/${interpreter} "$binary"
|
||||
done
|
||||
|
||||
# Older versions of this package happily installed broken copies of
|
||||
# anything other than CopyConsole - which was then also mangled to
|
||||
# copy_console for some reason. Keep backwards compatibility (only
|
||||
# for CopyConsole) for now; the NixOS service is already fixed.
|
||||
ln -sv "$out/bin"/{CopyConsole,copy_console}
|
||||
|
||||
RPATH=${libPaths}:$out/${appdir}
|
||||
echo "Updating rpaths to $RPATH in:"
|
||||
find "$out/${appdir}" -type f -a -perm -0100 \
|
||||
-print -exec patchelf --force-rpath --set-rpath "$RPATH" {} \;
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://copy.com;
|
||||
description = "Copy.com graphical & command-line clients";
|
||||
# Closed Source unfortunately.
|
||||
license = stdenv.lib.licenses.unfree;
|
||||
maintainers = with stdenv.lib.maintainers; [ nathan-gs nckx ];
|
||||
license = licenses.unfree;
|
||||
maintainers = with maintainers; [ nathan-gs nckx ];
|
||||
# NOTE: Copy.com itself only works on linux, so this is ok.
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user