nixpkgs/pkgs/tools/graphics/editres/default.nix
Bjørn Forsman bd01fad0ed Captialize meta.description of all packages
In line with the Nixpkgs manual.

A mechanical change, done with this command:

  find pkgs -name "*.nix" | \
      while read f; do \
          sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \
      done

I manually skipped some:

* Descriptions starting with an abbreviation, a user name or package name
* Frequently generated expressions (haskell-packages.nix)
2016-06-20 13:55:52 +02:00

22 lines
632 B
Nix

{ stdenv, fetchurl, pkgconfig, libXt, libXaw, libXres, utilmacros }:
stdenv.mkDerivation rec {
name = "editres-1.0.6";
src = fetchurl {
url = "mirror://xorg/individual/app/${name}.tar.gz";
sha256 = "06kv7dmw6pzlqc46dbh8k9xpb6sn4ihh0bcpxq0zpvw2lm66dx45";
};
buildInputs = [ pkgconfig libXt libXaw libXres utilmacros ];
preConfigure = "configureFlags=--with-appdefaultdir=$out/share/X11/app-defaults/editres";
meta = {
homepage = "http://cgit.freedesktop.org/xorg/app/editres/";
description = "A dynamic resource editor for X Toolkit applications";
platforms = stdenv.lib.platforms.linux;
};
}