1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

appdata-tools: drop

This commit is contained in:
Jan Tojnar 2018-08-08 19:49:37 +02:00
parent aab242e1c5
commit 635f4a2938
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4
2 changed files with 0 additions and 28 deletions

View file

@ -1,26 +0,0 @@
{ stdenv, fetchurl, pkgconfig, autoconf, automake, m4
, intltool, glib, libsoup, gdk_pixbuf }:
stdenv.mkDerivation rec {
version = "0_1_7";
name = "appdata_tools-${version}";
src = fetchurl {
url = "https://github.com/hughsie/appdata-tools/archive/appdata_tools_${version}.tar.gz";
sha256 = "1bzqg4gy8gqhbk2qjizsm0b78li9mv84fb3d8qwfpxh7c7p360x8";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ autoconf automake m4 intltool glib
libsoup gdk_pixbuf ];
configureScript = "./autogen.sh";
meta = with stdenv.lib; {
homepage = https://people.freedesktop.org/~hughsient/appdata;
description = "CLI designed to validate AppData descriptions for standards compliance and to the style guide";
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ lethalman ];
};
}

View file

@ -1547,8 +1547,6 @@ with pkgs;
apparix = callPackage ../tools/misc/apparix { };
appdata-tools = callPackage ../tools/misc/appdata-tools { };
appleseed = callPackage ../tools/graphics/appleseed { };
arping = callPackage ../tools/networking/arping { };