summary refs log tree commit diff
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2018-08-25 20:51:39 -0400
committerAaron Andersen <aaron@fosslib.net>2018-08-25 20:51:39 -0400
commit63c3b7ce10ab8672ecb28226f31c09e9809e80c0 (patch)
tree8953dfb5582b96d75a5a09d2bcc12d49ac302061
parentfc03a9f5b7bdd839f9f51f0ec950ae53228643e4 (diff)
downloadnixlib-63c3b7ce10ab8672ecb28226f31c09e9809e80c0.tar
nixlib-63c3b7ce10ab8672ecb28226f31c09e9809e80c0.tar.gz
nixlib-63c3b7ce10ab8672ecb28226f31c09e9809e80c0.tar.bz2
nixlib-63c3b7ce10ab8672ecb28226f31c09e9809e80c0.tar.lz
nixlib-63c3b7ce10ab8672ecb28226f31c09e9809e80c0.tar.xz
nixlib-63c3b7ce10ab8672ecb28226f31c09e9809e80c0.tar.zst
nixlib-63c3b7ce10ab8672ecb28226f31c09e9809e80c0.zip
fixed license
added incron to pkgs
-rw-r--r--pkgs/tools/system/incron/default.nix2
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/system/incron/default.nix b/pkgs/tools/system/incron/default.nix
index bb320f8d894c..a06bb324aaaa 100644
--- a/pkgs/tools/system/incron/default.nix
+++ b/pkgs/tools/system/incron/default.nix
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "
       The inotify cron daemon (incrond) is a daemon which monitors filesystem events and executes commands defined in system and user tables. It's use is generally similar to cron.";
-    license = gpl2;
+    license = licenses.gpl2;
     homepage = https://github.com/ar-/incron;
     platforms = platforms.linux;
   };
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 6a25ec7c561f..0183f3e8f16f 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -3237,6 +3237,8 @@ with pkgs;
 
   inboxer = callPackage ../applications/networking/mailreaders/inboxer { };
 
+  incron = callPackage ../tools/system/incron { };
+
   inetutils = callPackage ../tools/networking/inetutils { };
 
   infiniband-diags = callPackage ../tools/networking/infiniband-diags { };