Remove sudo overlay

This commit is contained in:
Tim Schubert 2021-04-24 14:30:33 +02:00
parent ca0d3de726
commit 8b198550cb
Signed by: dadada
GPG key ID: EEB8D1CE62C4DFEA
2 changed files with 0 additions and 12 deletions

View file

@ -9,7 +9,6 @@
dadadaScripts = self: super: {
dadadaScripts = super.callPackage ../pkgs/scripts.nix { };
};
sudo = import ./sudo.nix;
python3Packages = import ./python3-packages.nix;
recipemd = self: super: {
recipemd = super.python3Packages.toPythonApplication super.python3Packages.recipemd;

View file

@ -1,11 +0,0 @@
self: super:
{
sudo = super.sudo.overrideAttrs (old: rec {
pname = "sudo";
version = "1.9.5p2";
src = self.fetchurl {
url = "https://www.sudo.ws/dist/${pname}-${version}.tar.gz";
sha256 = "0y093z4f3822rc88g9asdch12nljdamp817vjxk04mca7ks2x7jk";
};
});
}