cflow: 1.4 -> 1.5 (#16535)

This commit is contained in:
Rahul Gopinath 2016-06-26 16:24:49 -07:00 committed by Franz Pletz
parent 5c59a30191
commit 601d4f5523

View File

@ -1,11 +1,11 @@
{ stdenv, fetchurl, gettext, emacs }: { stdenv, fetchurl, gettext, emacs }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "cflow-1.4"; name = "cflow-1.5";
src = fetchurl { src = fetchurl {
url = "mirror://gnu/cflow/${name}.tar.bz2"; url = "mirror://gnu/cflow/${name}.tar.bz2";
sha256 = "1jkbq97ajcf834z68hbn3xfhiz921zhn39gklml1racf0kb3jzh3"; sha256 = "0yq33k5ap1zpnja64n89iai4zh018ffr72wki5a6mzczd880mr3g";
}; };
patchPhase = '' patchPhase = ''
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
doCheck = true; doCheck = true;
meta = { meta = with stdenv.lib; {
description = "Tool to analyze the control flow of C programs"; description = "Tool to analyze the control flow of C programs";
longDescription = '' longDescription = ''
@ -39,11 +39,11 @@ stdenv.mkDerivation rec {
produced flowcharts in Emacs. produced flowcharts in Emacs.
''; '';
license = stdenv.lib.licenses.gpl3Plus; license = licenses.gpl3Plus;
homepage = http://www.gnu.org/software/cflow/; homepage = http://www.gnu.org/software/cflow/;
maintainers = [ ]; maintainers = [ maintainers.vrthra ];
/* On Darwin, build fails with: /* On Darwin, build fails with:
@ -52,6 +52,6 @@ stdenv.mkDerivation rec {
_argp_program_version$non_lazy_ptr in libcflow.a(argp-parse.o) _argp_program_version$non_lazy_ptr in libcflow.a(argp-parse.o)
ld: symbol(s) not found ld: symbol(s) not found
*/ */
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }