summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-08-16 12:34:56 +0200
committerGitHub <noreply@github.com>2018-08-16 12:34:56 +0200
commit4f9c7ea1dfb81630e3ff71bea15b37b7c4164046 (patch)
treea2bb5cafa2ab54829e4b1eac3ce430fbb2e7b7bc /pkgs/tools/system
parentf207998d792523ef969fc4be0e5419accc313277 (diff)
parent5c395d5095ed9f04fffdbda5da74c5867350e540 (diff)
downloadnixpkgs-4f9c7ea1dfb81630e3ff71bea15b37b7c4164046.tar
nixpkgs-4f9c7ea1dfb81630e3ff71bea15b37b7c4164046.tar.gz
nixpkgs-4f9c7ea1dfb81630e3ff71bea15b37b7c4164046.tar.bz2
nixpkgs-4f9c7ea1dfb81630e3ff71bea15b37b7c4164046.tar.lz
nixpkgs-4f9c7ea1dfb81630e3ff71bea15b37b7c4164046.tar.xz
nixpkgs-4f9c7ea1dfb81630e3ff71bea15b37b7c4164046.tar.zst
nixpkgs-4f9c7ea1dfb81630e3ff71bea15b37b7c4164046.zip
Merge pull request #45077 from markuskowa/licenses-c
Add license meta tags
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/cron/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/system/cron/default.nix b/pkgs/tools/system/cron/default.nix
index d6347798053..374f0ac19d8 100644
--- a/pkgs/tools/system/cron/default.nix
+++ b/pkgs/tools/system/cron/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
   hardeningEnable = [ "pie" ];
 
   preBuild = ''
-    # do not set sticky bit in /nix/store 
+    # do not set sticky bit in /nix/store
     substituteInPlace Makefile --replace ' -o root' ' ' --replace 111 755 --replace 4755 0755
     # do not strip during install, broken on cross and we'll do ourselves as needed
     substituteInPlace Makefile --replace ' -s cron' ' cron'
@@ -36,8 +36,9 @@ stdenv.mkDerivation {
 
   preInstall = "mkdir -p $out/bin $out/sbin $out/share/man/man1 $out/share/man/man5 $out/share/man/man8";
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Daemon for running commands at specific times (Vixie Cron)";
-    platforms = with stdenv.lib.platforms; linux ++ darwin;
+    license = licenses.bsd0;
+    platforms = with platforms; linux ++ darwin;
   };
 }