about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2022-05-16 20:30:44 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2022-05-16 20:30:44 +0200
commita30a34427c7235706164054394b3a5a628952a96 (patch)
tree8fc26a3306788d55b6fdb271fd07af61c198e408
parent4c0c8ac7fe0caca8655e2e75807bac1a4cf0fbe6 (diff)
Revert "libpcap: move dev things to extra output"
This reverts commit c96b21c78be0c5f954ac7fc218c5fadb683656dd.
-rw-r--r--pkgs/development/libraries/libpcap/default.nix4
1 files changed, 0 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libpcap/default.nix b/pkgs/development/libraries/libpcap/default.nix
index dbf494374cbba..f3d3587c14fa8 100644
--- a/pkgs/development/libraries/libpcap/default.nix
+++ b/pkgs/development/libraries/libpcap/default.nix
@@ -6,8 +6,6 @@ stdenv.mkDerivation rec {
   pname = "libpcap";
   version = "1.10.1";
 
-  outputs = [ "out" "dev" ];
-
   src = fetchurl {
     url = "https://www.tcpdump.org/release/${pname}-${version}.tar.gz";
     sha256 = "sha256-7ShfSsyvBTRPkJdXV7Pb/ncrpB0cQBwmSLf6RbcRvdQ=";
@@ -29,8 +27,6 @@ stdenv.mkDerivation rec {
     if [ "$dontDisableStatic" -ne "1" ]; then
       rm -f $out/lib/libpcap.a
     fi
-
-    moveToOutput "bin/pcap-config" "$dev"
   '';
 
   meta = {