1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

mcron: Fix missing libtool dependency

This commit is contained in:
Shea Levy 2018-03-17 21:50:02 -04:00
parent 856bbf010a
commit 30d208ed5e
No known key found for this signature in database
GPG key ID: 5C0BD6957D86FE27

View file

@ -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;