mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
21 lines
556 B
Nix
21 lines
556 B
Nix
{ stdenv, fetchurl, libmikmod, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mikmod-3.2.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/mikmod/${name}.tar.gz";
|
|
sha256 = "1k54p8pn3jinha0f2i23ad15pf1pamibzcxjrbzjbklpcz1ipc6v";
|
|
};
|
|
|
|
buildInputs = [ libmikmod ncurses ];
|
|
|
|
meta = {
|
|
description = "Tracker music player for the terminal";
|
|
homepage = "http://mikmod.shlomifish.org/";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
maintainers = with stdenv.lib.maintainers; [ ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|