stockholm/makefu/5pkgs/default.nix

65 lines
2.8 KiB
Nix
Raw Normal View History

self: super:
with super.lib; with builtins; let
2017-07-23 08:09:28 +00:00
# This callPackage will try to detect obsolete overrides.
callPackage = path: args: let
2018-02-26 18:05:50 +00:00
override = super.callPackage path args;
2017-07-23 08:09:28 +00:00
upstream = optionalAttrs (override ? "name")
(super.${(parseDrvName override.name).name} or {});
in if upstream ? "name" &&
override ? "name" &&
compareVersions upstream.name override.name != -1
then
trace
"Upstream `${upstream.name}' gets overridden by `${override.name}'."
override
else override;
2017-03-01 14:55:22 +00:00
eq = x: y: x == y;
2017-08-01 17:28:47 +00:00
subdirsOf = path:
mapAttrs (name: _: path + "/${name}")
(filterAttrs (_: eq "directory") (readDir path));
2017-07-23 08:09:28 +00:00
in {
2021-12-04 20:24:48 +00:00
quodlibet = super.pkgs.lib.overrideDerivation super.quodlibet (old: {
doCheck = false; # 1 error because of warnings (possibly upstream)
2018-09-16 22:29:03 +00:00
patches = [ ./custom/quodlibet/single-digit-discnumber.patch
./custom/quodlibet/remove-override-warning.patch ];
});
2021-12-04 20:24:48 +00:00
#rclone = super.pkgs.lib.overrideDerivation super.rclone (old: {
2019-10-15 06:47:31 +00:00
# postInstall = old.postInstall + ''
2019-01-10 23:37:13 +00:00
2019-10-15 06:47:31 +00:00
# $out/bin/rclone genautocomplete zsh _rclone
# install -D -m644 _rclone $out/share/zsh/vendor-completions/_rclone
# $out/bin/rclone genautocomplete bash _rclone
# install -D -m644 _rclone $out/etc/bash_completion.d/rclone
# '';
#});
2022-02-14 19:06:53 +00:00
# Hotfix for https://github.com/NixOS/nixpkgs/issues/157543
collectd = super.collectd.override { xen = null; };
2017-08-16 10:03:32 +00:00
alsa-hdspconf = callPackage ./custom/alsa-tools { alsaToolTarget="hdspconf";};
alsa-hdspmixer = callPackage ./custom/alsa-tools { alsaToolTarget="hdspmixer";};
alsa-hdsploader = callPackage ./custom/alsa-tools { alsaToolTarget="hdsploader";};
qcma = super.pkgs.libsForQt5.callPackage ./custom/qcma { };
2017-12-08 13:29:08 +00:00
inherit (callPackage ./devpi {}) devpi-web ;
2017-08-16 10:03:32 +00:00
nodemcu-uploader = super.pkgs.callPackage ./nodemcu-uploader {};
2020-03-13 09:40:11 +00:00
liveproxy = super.pkgs.python3Packages.callPackage ./custom/liveproxy {};
2021-09-05 16:40:25 +00:00
mediawiki-matrix-bot = super.pkgs.python3Packages.callPackage ./custom/mediawiki-matrix-bot {};
2020-03-13 09:40:11 +00:00
hydra-check = super.pkgs.python3Packages.callPackage ./custom/hydra-check {};
2020-10-23 19:28:55 +00:00
pwqgen-ger = super.pkgs.passwdqc-utils.override {
wordset-file = super.pkgs.fetchurl {
urls = [
https://gist.githubusercontent.com/makefu/b56f5554c9ef03fe6e09878962e6fd8d/raw/1f147efec51325bc9f80c823bad8381d5b7252f6/wordset_4k.c
https://archive.org/download/nixos-stockholm-tarballs/pviar5j1gxiqcf3l34b4n2pil06xc8zf-wordset_4k.c
];
sha256 = "18ddzyh11bywrhzdkzvrl7nvgp5gdb4k1s0zxbz2bkhd14vi72bb";
};
};
2015-10-03 17:57:38 +00:00
}
2017-07-23 08:09:28 +00:00
// (mapAttrs (_: flip callPackage {})
2017-07-23 08:09:28 +00:00
(filterAttrs (_: dir: pathExists (dir + "/default.nix"))
(subdirsOf ./.)))