summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2019-09-17 23:09:48 +0000
committerAlyssa Ross <hi@alyssa.is>2019-09-17 23:12:56 +0000
commit39b5f5956ed4520ac73cc984c64f4863c2fb9025 (patch)
tree6957df0d9ff13eaf58283294b0a2e796104b39df
parent9566ec034b9515ba2487d3625664109b59ca46f1 (diff)
tarsnap: fix license to mark as unfree
tarsnap has always been unfree, but this wasn't expressed properly, so it wouldn't be caught by allowUnfree = false.
-rw-r--r--pkgs/tools/backup/tarsnap/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/backup/tarsnap/default.nix b/pkgs/tools/backup/tarsnap/default.nix
index d24da778dcdb..8d23e955095a 100644
--- a/pkgs/tools/backup/tarsnap/default.nix
+++ b/pkgs/tools/backup/tarsnap/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Online backups for the truly paranoid";
homepage = "http://www.tarsnap.com/";
- license = "tarsnap";
+ license = stdenv.lib.licenses.unfree;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ thoughtpolice roconnor ];
};