mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
75 lines
2.2 KiB
Nix
75 lines
2.2 KiB
Nix
{ pkgs }:
|
|
self: super: {
|
|
|
|
nixops = super.nixops.overridePythonAttrs (
|
|
_: {
|
|
src = pkgs.fetchgit {
|
|
url = "https://github.com/NixOS/nixops.git";
|
|
rev = "35ac02085169bc2372834d6be6cf4c1bdf820d09";
|
|
sha256 = "1jh0jrxyywjqhac2dvpj7r7isjv68ynbg7g6f6rj55raxcqc7r3j";
|
|
};
|
|
}
|
|
);
|
|
|
|
nixops-aws = super.nixops-aws.overridePythonAttrs (
|
|
_: {
|
|
src = pkgs.fetchgit {
|
|
url = "https://github.com/NixOS/nixops-aws.git";
|
|
rev = "371aedeb7fd53b8978a60dd7c37d3a6c38101c48";
|
|
sha256 = "15jz9x3ra3hsh6xj4cbri1fvvjk2rplnnhnccz7qc6f176b5r01j";
|
|
};
|
|
}
|
|
);
|
|
|
|
nixops-encrypted-links = super.nixops-encrypted-links.overridePythonAttrs (
|
|
_: {
|
|
src = pkgs.fetchgit {
|
|
url = "https://github.com/nix-community/nixops-encrypted-links.git";
|
|
rev = "e2f196fce15fcfb00d18c055e1ac53aec33b8fb1";
|
|
sha256 = "12ynqwd5ad6wfyv6sma55wnmrlr8i14kd5d42zqv4zl23h0xnd6m";
|
|
};
|
|
}
|
|
);
|
|
|
|
nixops-gcp = super.nixops-gcp.overridePythonAttrs (
|
|
_: {
|
|
src = pkgs.fetchgit {
|
|
url = "https://github.com/nix-community/nixops-gce.git";
|
|
rev = "712453027486e62e087b9c91e4a8a171eebb6ddd";
|
|
sha256 = "0siw2silxvbxdfgb2dcymn11nqdf8an7q43wcq1lyg1ac07w7dwh";
|
|
};
|
|
}
|
|
);
|
|
|
|
nixops-virtd = super.nixops-virtd.overridePythonAttrs (
|
|
_: {
|
|
src = pkgs.fetchgit {
|
|
url = "https://github.com/nix-community/nixops-libvirtd.git";
|
|
rev = "1245280d97e0adc4643d02d1cf62ddd582c73e49";
|
|
sha256 = "1z3zsx54585rcyabj6hrbwbd1c783rrlfj53np1sa3i7m93vmxzc";
|
|
};
|
|
}
|
|
);
|
|
|
|
nixopsvbox = super.nixopsvbox.overridePythonAttrs (
|
|
_: {
|
|
src = pkgs.fetchgit {
|
|
url = "https://github.com/nix-community/nixops-vbox.git";
|
|
rev = "2729672865ebe2aa973c062a3fbddda8c1359da0";
|
|
sha256 = "07bmrbg3g2prnba2kwg1rg6rvmnx1vzc538y2q3g04s958hala56";
|
|
};
|
|
}
|
|
);
|
|
|
|
nixos-modules-contrib = super.nixos-modules-contrib.overridePythonAttrs (
|
|
_: {
|
|
src = pkgs.fetchgit {
|
|
url = "https://github.com/nix-community/nixos-modules-contrib.git";
|
|
rev = "81a1c2ef424dcf596a97b2e46a58ca73a1dd1ff8";
|
|
sha256 = "0f6ra5r8i1jz8ymw6l3j68b676a1lv0466lv0xa6mi80k6v9457x";
|
|
};
|
|
}
|
|
);
|
|
|
|
}
|