Commit eab90cce authored by figsoda's avatar figsoda
Browse files

pkgs/tools/package-management: remove dead code

parent 5d485746
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ let
  };

  # squashfuse adapted to nix from cmake experession in "${appimagekit_src}/lib/libappimage/cmake/dependencies.cmake"
  appimagekit_squashfuse = squashfuse.overrideAttrs (attrs: rec {
  appimagekit_squashfuse = squashfuse.overrideAttrs rec {
    pname = "squashfuse";
    version = "unstable-2016-10-09";

@@ -61,7 +61,7 @@ let
      cp -v ./.libs/*.a $out/lib
      cp -v ./*.h $out/include
    '';
  });
  };

in stdenv.mkDerivation rec {
  pname = "appimagekit";
+1 −1
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, pkg-config, glib, libxml2, libxslt, getopt, gettext, dysnomia, libintl, libiconv }:
{ lib, stdenv, fetchurl, pkg-config, glib, libxml2, libxslt, getopt, dysnomia, libintl, libiconv }:

stdenv.mkDerivation rec {
  pname = "disnix";
+0 −1
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@
, verilog
, verilator
, gnumake
, gcc
, edalize
, fastjsonschema
, pyparsing
+2 −2
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
, unstableGitUpdater
}:

stdenvNoCC.mkDerivation (finalAttrs: {
stdenvNoCC.mkDerivation {
  pname = "home-manager";
  version = "2023-05-30";

@@ -89,4 +89,4 @@ stdenvNoCC.mkDerivation (finalAttrs: {
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ AndersonTorres ];
  };
})
}
+2 −2
Original line number Diff line number Diff line
@@ -76,10 +76,10 @@ let
  aws-sdk-cpp-nix = (aws-sdk-cpp.override {
    apis = [ "s3" "transfer" ];
    customMemoryManagement = false;
  }).overrideAttrs (args: {
  }).overrideAttrs {
    # only a stripped down version is build which takes a lot less resources to build
    requiredSystemFeatures = [ ];
  });
  };


  common = args:
Loading