Initial commit

Extracted the skeleton from https://github.com/fgaz/nur-packages.git
This commit is contained in:
Francesco Gazzetta 2018-07-16 14:14:10 +02:00
commit dd95bed0d8
9 changed files with 153 additions and 0 deletions

15
overlay.nix Normal file
View file

@ -0,0 +1,15 @@
# You can use this file as a nixpkgs overlay.
# It's useful in the case where you don't want to add the whole NUR namespace
# to your configuration.
self: super:
import ./default.nix {
callPackage = super.callPackage;
libsForQt5 = super.libsForQt5;
haskellPackages = super.haskellPackages;
pythonPackages = super.pythonPackages;
# ...
# Add here other callPackage/callApplication/... providers as the need arises
}