mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01: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)
19 lines
482 B
Nix
19 lines
482 B
Nix
{ stdenv, fetchurl, pkgconfig, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mpack-1.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://ftp.andrew.cmu.edu/pub/mpack/${name}.tar.gz";
|
|
sha256 = "0k590z96509k96zxmhv72gkwhrlf55jkmyqlzi72m61r7axhhh97";
|
|
};
|
|
|
|
patches = [ ./build-fix.patch ];
|
|
|
|
preConfigure = "configureFlags=--mandir=$out/share/man";
|
|
|
|
meta = {
|
|
description = "Utilities for encoding and decoding binary files in MIME";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|