mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
bd01fad0ed
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)
20 lines
395 B
Nix
20 lines
395 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "popt-1.16";
|
|
|
|
src = fetchurl {
|
|
url = "http://rpm5.org/files/popt/${name}.tar.gz";
|
|
sha256 = "1j2c61nn2n351nhj4d25mnf3vpiddcykq005w2h6kw79dwlysa77";
|
|
};
|
|
|
|
patches = if stdenv.isCygwin then [
|
|
./1.16-cygwin.patch
|
|
./1.16-vpath.patch
|
|
] else null;
|
|
|
|
meta = {
|
|
description = "Command line option parsing library";
|
|
};
|
|
}
|