dragon-drop: remove duplicate package

Removing package because it is duplicate package of "xdragon".
This commit is contained in:
Anatolii Prylutskyi 2022-03-27 13:23:04 +03:00
parent 319145c9dc
commit 99984987a8
No known key found for this signature in database
GPG key ID: 160F039506A66437
2 changed files with 1 additions and 31 deletions

View file

@ -1,28 +0,0 @@
{ lib, stdenv, gtk, pkg-config, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "dragon-drop";
version = "1.1.1";
src = fetchFromGitHub {
owner = "mwh";
repo = "dragon";
rev = "v${version}";
sha256 = "0fgzz39007fdjwq72scp0qygp2v3zc5f1xkm0sxaa8zxm25g1bra";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk ];
installPhase = ''
install -D dragon -t $out/bin
'';
meta = with lib; {
description = "Simple drag-and-drop source/sink for X";
homepage = "https://github.com/mwh/dragon";
maintainers = with maintainers; [ jb55 markus1189 ];
license = licenses.gpl3;
platforms = with platforms; unix;
};
}

View file

@ -2982,9 +2982,7 @@ with pkgs;
dpic = callPackage ../tools/graphics/dpic { };
dragon-drop = callPackage ../tools/X11/dragon-drop {
gtk = gtk3;
};
dragon-drop = throw "'dragon-drop' has been renamed to/replaced by 'xdragon'"; # Converted to throw 2022-03-27;
dstp = callPackage ../development/tools/dstp { };