28ac782583
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.
18 lines
369 B
Nix
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/;
|
|
};
|
|
}
|