From 55d4b488033549773353761898fc00879f21d612 Mon Sep 17 00:00:00 2001 From: tv Date: Sun, 28 Jun 2015 13:53:42 +0200 Subject: common nixpkgs: use types.str --- modules/common/nixpkgs.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'modules') diff --git a/modules/common/nixpkgs.nix b/modules/common/nixpkgs.nix index 9f8e7027..36ebbb07 100644 --- a/modules/common/nixpkgs.nix +++ b/modules/common/nixpkgs.nix @@ -5,12 +5,12 @@ with lib; { options = { nixpkgs.url = mkOption { - type = types.string; - description = "url of the remote repo"; + type = types.str; + description = "URL of the nixpkgs repository."; }; - nixpkgs.rev= mkOption { - type = types.string; - description = "revision of the remote repo"; + nixpkgs.rev = mkOption { + type = types.str; + description = "Revision of the remote repository."; }; }; } -- cgit v1.2.3