pkgs/tools/package-management: remove dead code

This commit is contained in:
figsoda 2023-07-25 12:12:32 -04:00
parent 5d4857463a
commit eab90cce8f
6 changed files with 9 additions and 10 deletions

View file

@ -17,7 +17,7 @@ let
}; };
# squashfuse adapted to nix from cmake experession in "${appimagekit_src}/lib/libappimage/cmake/dependencies.cmake" # 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"; pname = "squashfuse";
version = "unstable-2016-10-09"; version = "unstable-2016-10-09";
@ -61,7 +61,7 @@ let
cp -v ./.libs/*.a $out/lib cp -v ./.libs/*.a $out/lib
cp -v ./*.h $out/include cp -v ./*.h $out/include
''; '';
}); };
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
pname = "appimagekit"; pname = "appimagekit";

View file

@ -1,4 +1,4 @@
{ 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 { stdenv.mkDerivation rec {
pname = "disnix"; pname = "disnix";

View file

@ -4,7 +4,6 @@
, verilog , verilog
, verilator , verilator
, gnumake , gnumake
, gcc
, edalize , edalize
, fastjsonschema , fastjsonschema
, pyparsing , pyparsing

View file

@ -14,7 +14,7 @@
, unstableGitUpdater , unstableGitUpdater
}: }:
stdenvNoCC.mkDerivation (finalAttrs: { stdenvNoCC.mkDerivation {
pname = "home-manager"; pname = "home-manager";
version = "2023-05-30"; version = "2023-05-30";
@ -89,4 +89,4 @@ stdenvNoCC.mkDerivation (finalAttrs: {
license = lib.licenses.mit; license = lib.licenses.mit;
maintainers = with lib.maintainers; [ AndersonTorres ]; maintainers = with lib.maintainers; [ AndersonTorres ];
}; };
}) }

View file

@ -76,10 +76,10 @@ let
aws-sdk-cpp-nix = (aws-sdk-cpp.override { aws-sdk-cpp-nix = (aws-sdk-cpp.override {
apis = [ "s3" "transfer" ]; apis = [ "s3" "transfer" ];
customMemoryManagement = false; customMemoryManagement = false;
}).overrideAttrs (args: { }).overrideAttrs {
# only a stripped down version is build which takes a lot less resources to build # only a stripped down version is build which takes a lot less resources to build
requiredSystemFeatures = [ ]; requiredSystemFeatures = [ ];
}); };
common = args: common = args:

View file

@ -7,7 +7,7 @@ let
# 3. Ansible being unable to upgrade to a later version of resolvelib # 3. Ansible being unable to upgrade to a later version of resolvelib
# see here for more details: https://github.com/NixOS/nixpkgs/pull/155380/files#r786255738 # see here for more details: https://github.com/NixOS/nixpkgs/pull/155380/files#r786255738
packageOverrides = self: super: { packageOverrides = self: super: {
resolvelib = super.resolvelib.overridePythonAttrs (attrs: rec { resolvelib = super.resolvelib.overridePythonAttrs rec {
version = "1.0.1"; version = "1.0.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sarugaku"; owner = "sarugaku";
@ -15,7 +15,7 @@ let
rev = "/refs/tags/${version}"; rev = "/refs/tags/${version}";
hash = "sha256-oxyPn3aFPOyx/2aP7Eg2ThtPbyzrFT1JzWqy6GqNbzM="; hash = "sha256-oxyPn3aFPOyx/2aP7Eg2ThtPbyzrFT1JzWqy6GqNbzM=";
}; };
}); };
}; };
self = python; self = python;
}; };