nur/default.nix
Francesco Gazzetta dd95bed0d8 Initial commit
Extracted the skeleton from https://github.com/fgaz/nur-packages.git
2018-07-16 14:18:20 +02:00

19 lines
492 B
Nix

# This file describes your repository contents.
# It should return a set of nix derivations.
# It should NOT import <nixpkgs>. Instead, you should take all dependencies as
# arguments.
{ callPackage
, libsForQt5
, haskellPackages
, pythonPackages
# , ...
# Add here other callPackage/callApplication/... providers as the need arises
, ... }:
{
example-package = callPackage ./pkgs/example-package { };
# some-qt5-package = libsForQt5.callPackage ./pkgs/some-qt5-package { };
# ...
}