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