mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
96d41e393d
It's sad, but he's been inactive for the last five years. Keeping such people in meta.maintainers is counter-productive.
21 lines
436 B
Nix
21 lines
436 B
Nix
{ stdenv, fetchurl, glib, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libmms-0.6.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libmms/${name}.tar.gz";
|
|
sha256 = "0kvhxr5hkabj9v7ah2rzkbirndfqdijd9hp8v52c1z6bxddf019w";
|
|
};
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
meta = {
|
|
homepage = http://libmms.sourceforge.net;
|
|
maintainers = [ ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|