stockholm/modules/common/nixpkgs.nix

17 lines
281 B
Nix
Raw Normal View History

2015-05-15 14:42:01 +00:00
{ lib, ... }:
with lib;
{
options = {
nixpkgs.url = mkOption {
2015-06-28 11:53:42 +00:00
type = types.str;
description = "URL of the nixpkgs repository.";
};
2015-06-28 11:53:42 +00:00
nixpkgs.rev = mkOption {
type = types.str;
description = "Revision of the remote repository.";
};
};
}