mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
42c94d06fd
``` nix-repl> (pkgs.htop.overrideAttrs { pname = "hello-overriden"; }).pname error: … while evaluating a branch condition at /nix/store/phn5cahwacv9wjgalygw62x8l4xbl6x3-source/lib/customisation.nix:86:7: 85| in 86| if builtins.isAttrs result then | ^ 87| result // { … while calling the 'isAttrs' builtin at /nix/store/phn5cahwacv9wjgalygw62x8l4xbl6x3-source/lib/customisation.nix:86:10: 85| in 86| if builtins.isAttrs result then | ^ 87| result // { (stack trace truncated; use '--show-trace' to show the full trace) error: attempt to call something which is not a function but a set at /nix/store/phn5cahwacv9wjgalygw62x8l4xbl6x3-source/pkgs/stdenv/generic/make-derivation.nix:58:21: 57| f = self: super: 58| let x = f0 super; | ^ 59| in ```
67 lines
2.1 KiB
Nix
67 lines
2.1 KiB
Nix
{ lib, pkgs, stdenvNoCC }:
|
|
|
|
let
|
|
tests =
|
|
let
|
|
p = pkgs.python3Packages.xpybutil.overridePythonAttrs (_: { dontWrapPythonPrograms = true; });
|
|
in
|
|
[
|
|
({
|
|
name = "overridePythonAttrs";
|
|
expr = !lib.hasInfix "wrapPythonPrograms" p.postFixup;
|
|
expected = true;
|
|
})
|
|
({
|
|
name = "repeatedOverrides-pname";
|
|
expr = repeatedOverrides.pname == "a-better-hello-with-blackjack";
|
|
expected = true;
|
|
})
|
|
({
|
|
name = "repeatedOverrides-entangled-pname";
|
|
expr = repeatedOverrides.entangled.pname == "a-better-figlet-with-blackjack";
|
|
expected = true;
|
|
})
|
|
({
|
|
name = "overriding-using-only-attrset";
|
|
expr = (pkgs.hello.overrideAttrs { pname = "hello-overriden"; }).pname == "hello-overriden";
|
|
expected = true;
|
|
})
|
|
({
|
|
name = "overriding-using-only-attrset-no-final-attrs";
|
|
expr = ((stdenvNoCC.mkDerivation { pname = "hello-no-final-attrs"; }).overrideAttrs { pname = "hello-no-final-attrs-overridden"; }).pname == "hello-no-final-attrs-overridden";
|
|
expected = true;
|
|
})
|
|
];
|
|
|
|
addEntangled = origOverrideAttrs: f:
|
|
origOverrideAttrs (
|
|
lib.composeExtensions f (self: super: {
|
|
passthru = super.passthru // {
|
|
entangled = super.passthru.entangled.overrideAttrs f;
|
|
overrideAttrs = addEntangled self.overrideAttrs;
|
|
};
|
|
})
|
|
);
|
|
|
|
entangle = pkg1: pkg2: pkg1.overrideAttrs (self: super: {
|
|
passthru = super.passthru // {
|
|
entangled = pkg2;
|
|
overrideAttrs = addEntangled self.overrideAttrs;
|
|
};
|
|
});
|
|
|
|
example = entangle pkgs.hello pkgs.figlet;
|
|
|
|
overrides1 = example.overrideAttrs (_: super: { pname = "a-better-${super.pname}"; });
|
|
|
|
repeatedOverrides = overrides1.overrideAttrs (_: super: { pname = "${super.pname}-with-blackjack"; });
|
|
in
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
name = "test-overriding";
|
|
passthru = { inherit tests; };
|
|
buildCommand = ''
|
|
touch $out
|
|
'' + lib.concatMapStringsSep "\n" (t: "([[ ${lib.boolToString t.expr} == ${lib.boolToString t.expected} ]] && echo '${t.name} success') || (echo '${t.name} fail' && exit 1)") tests;
|
|
}
|