summary refs log tree commit diff
path: root/pkgs/development/libraries/libcdaudio/default.nix
blob: aca2d056f8f96f3727e0422dd9df9818e7d365b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "libcdaudio-0.99.12";
  src = fetchurl {
    url = mirror://sourceforge/libcdaudio/libcdaudio-0.99.12.tar.gz ;
    md5 = "63b49cf14d53eed31e7a87cca17a3963" ;
  };

  meta = {
    platforms = stdenv.lib.platforms.linux;
  };
}