mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
fswatch: update from 1.4.6 to 1.4.7
This commit is contained in:
parent
1a3860e95a
commit
b57097b2fe
1 changed files with 5 additions and 14 deletions
|
@ -1,7 +1,6 @@
|
|||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, autoconf
|
||||
, automake
|
||||
, autoreconfHook
|
||||
, findutils # for xargs
|
||||
, gettext
|
||||
, libtool
|
||||
|
@ -9,26 +8,18 @@
|
|||
, texinfo
|
||||
}:
|
||||
|
||||
let
|
||||
|
||||
version = "1.4.6";
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "fswatch-${version}";
|
||||
version = "1.4.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "emcrisostomo";
|
||||
repo = "fswatch";
|
||||
rev = version;
|
||||
sha256 = "0flq8baqzifhmf61zyiipdipvgy4h0kl551clxrhwa8gvzf75im4";
|
||||
sha256 = "0f6aa14v31gy3j7qx563ml37r8mylpbqfjrz2v5g44zrrg6086w7";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake gettext libtool makeWrapper texinfo ];
|
||||
|
||||
preConfigure = ''
|
||||
./autogen.sh
|
||||
'';
|
||||
buildInputs = [ autoreconfHook gettext libtool makeWrapper texinfo ];
|
||||
|
||||
postFixup = ''
|
||||
for prog in fswatch-run fswatch-run-bash; do
|
||||
|
|
Loading…
Reference in a new issue