Set up some packages
This commit is contained in:
parent
d6495fe305
commit
741eb1d5ce
6 changed files with 58 additions and 3 deletions
5
modules/overlay-pkgs/default.nix
Normal file
5
modules/overlay-pkgs/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
nixpkgs.overlays = [(final: prev: {
|
||||
kwrite = final.callPackage ./kwrite.nix {};
|
||||
})];
|
||||
}
|
3
modules/overlay-pkgs/kwrite.nix
Normal file
3
modules/overlay-pkgs/kwrite.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{ kate }: kate.overrideAttrs (_: _: {
|
||||
cmakeFlags = [ "-DBUILD_kate=FALSE" ];
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue