From 4a860b8fbfb264d5a754f59113b23e4093a51b7a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 16 Jan 2016 04:56:08 +0100 Subject: [PATCH] copy-com: remove deprecated Nix-specific alias --- pkgs/applications/networking/copy-com/default.nix | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/pkgs/applications/networking/copy-com/default.nix b/pkgs/applications/networking/copy-com/default.nix index 968218309ed7..0ec2f5ac87a0 100644 --- a/pkgs/applications/networking/copy-com/default.nix +++ b/pkgs/applications/networking/copy-com/default.nix @@ -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; }; }