stockholm/modules/common/nixpkgs.nix
2015-06-28 13:53:42 +02:00

17 lines
281 B
Nix

{ lib, ... }:
with lib;
{
options = {
nixpkgs.url = mkOption {
type = types.str;
description = "URL of the nixpkgs repository.";
};
nixpkgs.rev = mkOption {
type = types.str;
description = "Revision of the remote repository.";
};
};
}