pkgs/tools/filesystems: remove dead code

with the help of deadnix & nil

figsoda b035caba 6fdd7691

+17 -27
+2 -2
pkgs/tools/filesystems/bees/default.nix
··· 75 75 substituteAll ${./bees-service-wrapper} "$out"/bin/bees-service-wrapper 76 76 chmod +x "$out"/bin/bees-service-wrapper 77 77 ln -s ${bees}/bin/beesd "$out"/bin/beesd 78 - '').overrideAttrs (old: { 78 + '').overrideAttrs { 79 79 passthru.tests = { 80 80 smoke-test = nixosTests.bees; 81 81 }; 82 - }) 82 + }
+4 -4
pkgs/tools/filesystems/ceph/default.nix
··· 107 107 optZfs = shouldUsePkg zfs; 108 108 109 109 # Downgrade rocksdb, 7.10 breaks ceph 110 - rocksdb' = rocksdb.overrideAttrs (oldAttrs: { 110 + rocksdb' = rocksdb.overrideAttrs { 111 111 version = "7.9.2"; 112 112 src = fetchFromGitHub { 113 113 owner = "facebook"; ··· 115 115 rev = "refs/tags/v7.9.2"; 116 116 hash = "sha256-5P7IqJ14EZzDkbjaBvbix04ceGGdlWBuVFH/5dpD5VM="; 117 117 }; 118 - }); 118 + }; 119 119 120 120 hasRadosgw = optExpat != null && optCurl != null && optLibedit != null; 121 121 ··· 165 165 # Watch out for python <> boost compatibility 166 166 python = python310.override { 167 167 packageOverrides = self: super: { 168 - sqlalchemy = super.sqlalchemy.overridePythonAttrs (oldAttrs: rec { 168 + sqlalchemy = super.sqlalchemy.overridePythonAttrs rec { 169 169 version = "1.4.46"; 170 170 src = fetchPypi { 171 171 pname = "SQLAlchemy"; ··· 176 176 "test/aaa_profiling" 177 177 "test/ext/mypy" 178 178 ]; 179 - }); 179 + }; 180 180 }; 181 181 }; 182 182
-1
pkgs/tools/filesystems/davfs2/default.nix
··· 1 1 { lib, stdenv 2 2 , fetchurl 3 - , fetchpatch 4 3 , autoreconfHook 5 4 , neon 6 5 , procps
+2 -2
pkgs/tools/filesystems/dduper/default.nix
··· 1 1 { lib, stdenv, fetchpatch, fetchFromGitHub, btrfs-progs, python3 }: 2 2 3 3 let 4 - btrfsProgsPatched = btrfs-progs.overrideAttrs (oldAttrs: { 4 + btrfsProgsPatched = btrfs-progs.overrideAttrs { 5 5 patches = [ 6 6 (fetchpatch { 7 7 name = "0001-Print-csum-for-a-given-file-on-stdout.patch"; ··· 9 9 sha256 = "sha256-M4LT7G6gwBfSXf6EL4pxNoQJMyUTOA+ojxEJqw2yss4="; 10 10 }) 11 11 ]; 12 - }); 12 + }; 13 13 py3 = python3.withPackages (ps: with ps; [ 14 14 prettytable 15 15 numpy
+1 -1
pkgs/tools/filesystems/dupe-krill/default.nix
··· 1 - { lib, fetchFromGitHub, rustPlatform, runCommand }: 1 + { lib, fetchFromGitHub, rustPlatform }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "dupe-krill";
-1
pkgs/tools/filesystems/dwarfs/default.nix
··· 9 9 , double-conversion 10 10 , fmt_8 11 11 , fuse3 12 - , gflags 13 12 , glog 14 13 , gtest 15 14 , jemalloc
+1 -1
pkgs/tools/filesystems/garage/default.nix
··· 1 1 { lib, stdenv, rustPlatform, fetchFromGitea, openssl, pkg-config, protobuf 2 - , cacert, testers, Security, garage, nixosTests }: 2 + , cacert, Security, garage, nixosTests }: 3 3 let 4 4 generic = { version, sha256, cargoSha256, eol ? false, broken ? false }: rustPlatform.buildRustPackage { 5 5 pname = "garage";
-1
pkgs/tools/filesystems/gocryptfs/default.nix
··· 1 1 { lib 2 - , stdenv 3 2 , buildGoModule 4 3 , fetchFromGitHub 5 4 , fuse
-1
pkgs/tools/filesystems/lizardfs/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , cmake 6 5 , makeWrapper 7 6 , python3
+2 -2
pkgs/tools/filesystems/mkspiffs/presets.nix
··· 4 4 5 5 lib.mapAttrs ( 6 6 name: { CPPFLAGS }: 7 - mkspiffs.overrideAttrs (drv: { 7 + mkspiffs.overrideAttrs { 8 8 inherit CPPFLAGS; 9 9 BUILD_CONFIG_NAME = "-${name}"; 10 - }) 10 + } 11 11 ) { 12 12 arduino-esp8266.CPPFLAGS = [ 13 13 "-DSPIFFS_USE_MAGIC_LENGTH=0"
-3
pkgs/tools/filesystems/netatalk/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchurl 4 - , fetchpatch 5 4 , acl 6 5 , autoreconfHook 7 6 , avahi 8 7 , db 9 - , ed 10 8 , libevent 11 9 , libgcrypt 12 10 , libiconv 13 - , libtirpc 14 11 , openssl 15 12 , pam 16 13 , perl
+1 -1
pkgs/tools/filesystems/nilfs-utils/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, libuuid, libselinux 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, libuuid, libselinux 2 2 , e2fsprogs }: 3 3 4 4 stdenv.mkDerivation rec {
+1 -1
pkgs/tools/filesystems/sdat2img/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, python3Packages }: 1 + { lib, fetchFromGitHub, python3Packages }: 2 2 3 3 python3Packages.buildPythonApplication { 4 4 pname = "sdat2img";
-1
pkgs/tools/filesystems/squashfs/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , help2man 6 5 , lz4 7 6 , lzo
+1 -1
pkgs/tools/filesystems/ubidump/default.nix
··· 1 - { lib, fetchFromGitHub, python3, makeWrapper }: 1 + { lib, fetchFromGitHub, python3 }: 2 2 3 3 python3.pkgs.buildPythonApplication rec { 4 4
-1
pkgs/tools/filesystems/wipefreespace/default.nix
··· 1 1 { stdenv 2 - , pkgs 3 2 , lib 4 3 , fetchurl 5 4 , e2fsprogs
+2 -3
pkgs/tools/filesystems/zpool-auto-expand-partitions/default.nix
··· 1 - { rustPlatform 1 + { lib 2 + , rustPlatform 2 3 , cloud-utils 3 4 , fetchFromGitHub 4 - , lib 5 - , llvmPackages 6 5 , pkg-config 7 6 , util-linux 8 7 , zfs