mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
diffstat: clean up expression
Most importantly, add meta.description and meta.platforms.
This commit is contained in:
parent
c5e0079962
commit
3ae765278f
1 changed files with 12 additions and 6 deletions
|
@ -1,17 +1,23 @@
|
|||
{fetchurl, stdenv}:
|
||||
{ fetchurl, stdenv }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "diffstat-1.58";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://invisible-island.net/diffstat/"+ name +".tgz";
|
||||
url = "ftp://invisible-island.net/diffstat/${name}.tgz";
|
||||
sha256 = "14rpf5c05ff30f6vn6pn6pzy0k4g4is5im656ahsxff3k58i7mgs";
|
||||
};
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
description = "Read output of diff and display a histogram of the changes";
|
||||
longDescription = ''
|
||||
diffstat reads the output of diff and displays a histogram of the
|
||||
insertions, deletions, and modifications per-file. It is useful for
|
||||
reviewing large, complex patch files.
|
||||
'';
|
||||
homepage = http://invisible-island.net/diffstat/;
|
||||
longDescription = "diffstat reads the output of diff and displays a
|
||||
istogram of the insertions, deletions, and modifications per-file. It
|
||||
s useful for reviewing large, complex patch files.";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue