stockholm/modules/common/nixpkgs.nix

17 lines
271 B
Nix
Raw Normal View History

2015-05-15 14:42:01 +00:00
{ lib, ... }:
with lib;
{
options = {
nixpkgs.url = mkOption {
type = types.string;
description = "url of the remote repo";
};
nixpkgs.rev= mkOption {
type = types.string;
description = "revision of the remote repo";
};
};
}