nixpkgs/pkgs/development/libraries/a52dec/default.nix
Bjørn Forsman 28ac782583 Some description fixes
There are many more packages to fix, this is just a start.

Rules:
 * Don't repeat the package name (not always that easy...)
 * Start with capital letter
 * Don't end with full stop
 * Don't start with "The ..." or "A ..."

I've also added descriptions to some packages and rewritten others.
2013-10-05 19:36:23 +02:00

18 lines
369 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "a52dec-0.7.4";
src = fetchurl {
url = "${meta.homepage}/files/a52dec-0.7.4.tar.gz";
sha256 = "0czccp4fcpf2ykp16xcrzdfmnircz1ynhls334q374xknd5747d2";
};
NIX_CFLAGS_COMPILE = "-fpic";
meta = {
description = "ATSC A/52 stream decoder";
homepage = http://liba52.sourceforge.net/;
};
}