summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2020-09-28 02:54:15 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2020-09-28 22:39:15 -0300
commit0f845601f6000e8b70d9f2e863a97ee9be50df1b (patch)
tree6b382c68a6dd48d0c5f616df69df668012c9b768 /pkgs/applications/misc
parentb055ec84fcf30729743fcc4649cc64b4e9753c8b (diff)
downloadnixpkgs-0f845601f6000e8b70d9f2e863a97ee9be50df1b.tar
nixpkgs-0f845601f6000e8b70d9f2e863a97ee9be50df1b.tar.gz
nixpkgs-0f845601f6000e8b70d9f2e863a97ee9be50df1b.tar.bz2
nixpkgs-0f845601f6000e8b70d9f2e863a97ee9be50df1b.tar.lz
nixpkgs-0f845601f6000e8b70d9f2e863a97ee9be50df1b.tar.xz
nixpkgs-0f845601f6000e8b70d9f2e863a97ee9be50df1b.tar.zst
nixpkgs-0f845601f6000e8b70d9f2e863a97ee9be50df1b.zip
Netsurf libparserutils: 0.2.4 -> 0.2.4
Update metadata and maintain version
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/netsurf/libparserutils/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/applications/misc/netsurf/libparserutils/default.nix b/pkgs/applications/misc/netsurf/libparserutils/default.nix
deleted file mode 100644
index 9fcd5cfebf6..00000000000
--- a/pkgs/applications/misc/netsurf/libparserutils/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ stdenv, fetchurl, perl
-, buildsystem
-}:
-
-stdenv.mkDerivation rec {
-
-  name = "netsurf-${libname}-${version}";
-  libname = "libparserutils";
-  version = "0.2.4";
-
-  src = fetchurl {
-    url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz";
-    sha256 = "1n2794y2l0c8nv8z2pxwfnbn882987ifmxjv60zdxkhcndhswarj";
-  };
-
-  buildInputs = [ buildsystem perl ];
-
-  makeFlags = [
-    "PREFIX=$(out)"
-    "NSSHARED=${buildsystem}/share/netsurf-buildsystem"
-  ];
-
-  meta = with stdenv.lib; {
-    homepage = "http://www.netsurf-browser.org/";
-    description = "Parser building library for netsurf browser";
-    license = licenses.gpl2;
-    maintainers = [ maintainers.vrthra ];
-    platforms = platforms.linux;
-  };
-}