summary refs log tree commit diff
path: root/pkgs/development/libraries/libmikmod/default.nix
blob: 3d2a2635fbcc07f48cb9017483fead98edeb4564 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, texinfo }:
stdenv.mkDerivation rec {
  name = "libmikmod-3.1.12";
  src = fetchurl {
    url = "mirror://sourceforge/mikmod/${name}.tar.gz";
    sha256 = "0cpwpl0iqd5zsdwshw69arzlwp883bkmkx41wf3fzrh60dw2n6l9";
  };
  buildInputs = [ texinfo ];
  meta = {
    description = "A library for playing tracker music module files";
    longDescription = ''
      A library for playing tracker music module files supporting many formats,
      including MOD, S3M, IT and XM.
    '';
    homepage = http://mikmod.raphnet.net/;
    license = "LGPLv2+";
    maintainers = with stdenv.lib.maintainers; [ astsmtl ];
    platforms = with stdenv.lib.platforms; linux;
  };
}