[NixOS] Remove unused overrides

This commit is contained in:
Ivan Malison 2020-03-31 19:50:54 -07:00
parent 64ca9fa3ae
commit 168b69ca90
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -8,18 +8,11 @@ let
lorriBinSource = super.fetchFromGitHub { lorriBinSource = super.fetchFromGitHub {
owner = "IvanMalison"; owner = "IvanMalison";
repo = "lorri"; repo = "lorri";
rev = "f8efa0a10d05f2d8223e6243eafa459120eb30dc"; rev = "94c7152745688c1268262a42d1d0fa0b7b2f6309";
sha256 = "1bagm9bd0ybi36lypnj96cvig95qaq5bh6fdqh2wbw18awlk6vzh"; sha256 = "07mcmj44f35yb2ifzr4zmazqv54dh0vhvkdikbymm2vdmjh8xdw8";
}; };
in in
{ {
rofi = super.rofi.overrideAttrs(_: rec {
version = "1.5.3";
src = super.fetchurl {
url = "https://github.com/DaveDavenport/rofi/releases/download/${version}/rofi-${version}.tar.gz";
sha256 = "1mskknfnpgmaghplwcyc44qc8swb1f9qiyi67fz9i77jijjpj1lx";
};
});
clipit = super.clipit.overrideAttrs (oldAttrs: rec { clipit = super.clipit.overrideAttrs (oldAttrs: rec {
version = "50d983514386029a1f133187902084b753458f32"; version = "50d983514386029a1f133187902084b753458f32";
preConfigure = "./autogen.sh"; preConfigure = "./autogen.sh";
@ -52,16 +45,5 @@ in
makeWrapper libtool gnome3.gnome-common makeWrapper libtool gnome3.gnome-common
]; ];
}); });
networkmanager_strongswan = super.networkmanager_strongswan.overrideAttrs (oldAttrs: rec {
src = super.fetchFromGitHub {
owner = "IvanMalison";
repo = "NetworkManager-strongswan";
sha256 = "0vcg58xrjacdswz2fxahgi7shgf2v14mfpscnwza6wns8qx37yzb";
rev = "2849b1817926b7973a5dc530bed7250c95c733bf";
};
});
strongswanNM = super.strongswanNM.overrideAttrs (oldAttrs: rec {
patches = oldAttrs.patches ++ [ ./patch-strongswan.patch ];
});
lorri = (import (lorriBinSource.outPath + "/default.nix")) { pkgs = super; }; lorri = (import (lorriBinSource.outPath + "/default.nix")) { pkgs = super; };
} }