Add Rupert’s configuration
This commit is contained in:
commit
2b4264d32d
31 changed files with 1742 additions and 0 deletions
19
overlays/burp.nix
Normal file
19
overlays/burp.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
burp = (super.burp.overrideAttrs (old: {
|
||||
version = "3.1.4";
|
||||
src = super.fetchFromGitHub {
|
||||
owner = "grke";
|
||||
repo = "burp";
|
||||
rev = "3.1.4";
|
||||
hash = "sha256-/vYon0XUIuMAaaaRNehzMspKMHWp0tJm8JubRt1KmZU=";
|
||||
};
|
||||
configureFlags = [ "--sysconfdir=/var/lib/burp" ];
|
||||
buildInputs = with super; [ librsync ncurses openssl_1_1 zlib uthash ];
|
||||
patches = [];
|
||||
}));
|
||||
})
|
||||
];
|
||||
}
|
6
overlays/default.nix
Normal file
6
overlays/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./burp.nix
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue