summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2018-03-17 21:50:02 -0400
committerShea Levy <shea@shealevy.com>2018-03-17 21:50:02 -0400
commit30d208ed5e5d1231426ca231d82a5151c9e6d005 (patch)
tree4ed6cb87af17ad91858952ef1e668f9d542bd810 /pkgs/tools/system
parent856bbf010a3241bb3c3467d8cba740863350327d (diff)
downloadnixlib-30d208ed5e5d1231426ca231d82a5151c9e6d005.tar
nixlib-30d208ed5e5d1231426ca231d82a5151c9e6d005.tar.gz
nixlib-30d208ed5e5d1231426ca231d82a5151c9e6d005.tar.bz2
nixlib-30d208ed5e5d1231426ca231d82a5151c9e6d005.tar.lz
nixlib-30d208ed5e5d1231426ca231d82a5151c9e6d005.tar.xz
nixlib-30d208ed5e5d1231426ca231d82a5151c9e6d005.tar.zst
nixlib-30d208ed5e5d1231426ca231d82a5151c9e6d005.zip
mcron: Fix missing libtool dependency
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/mcron/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/mcron/default.nix b/pkgs/tools/system/mcron/default.nix
index 5863504c7040..dbc679eb8ad3 100644
--- a/pkgs/tools/system/mcron/default.nix
+++ b/pkgs/tools/system/mcron/default.nix
@@ -1,4 +1,4 @@
-{ fetchurl, stdenv, guile, which, ed }:
+{ fetchurl, stdenv, guile, which, ed, libtool }:
 
 stdenv.mkDerivation rec {
   name = "mcron-1.0.6";
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
     substituteInPlace makefile.in --replace "rwxs" "rwx"
   '';
 
-  buildInputs = [ guile which ed ];
+  buildInputs = [ guile which ed libtool ];
 
   doCheck = true;