nixpkgs/pkgs/tools/networking/curl-impersonate/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
519 B
Nix
Raw Normal View History

2024-08-05 06:06:05 +00:00
{
symlinkJoin,
callPackage,
nixosTests,
2023-07-21 18:37:24 +00:00
}:
symlinkJoin rec {
pname = "curl-impersonate";
2024-05-09 17:22:07 +00:00
inherit (passthru.curl-impersonate-chrome) version meta;
2023-07-21 18:37:24 +00:00
name = "${pname}-${version}";
paths = [
passthru.curl-impersonate-ff
passthru.curl-impersonate-chrome
];
2022-09-18 09:44:53 +00:00
2023-07-21 18:37:24 +00:00
passthru = {
2024-08-05 06:06:05 +00:00
curl-impersonate-ff = callPackage ./firefox { };
curl-impersonate-chrome = callPackage ./chrome { };
2022-09-18 09:44:53 +00:00
2024-05-09 17:22:07 +00:00
inherit (passthru.curl-impersonate-chrome) src;
2023-07-21 18:37:48 +00:00
2024-08-05 06:06:05 +00:00
tests = { inherit (nixosTests) curl-impersonate; };
2022-09-18 09:44:53 +00:00
};
}