mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
ab3eeabfed
Likewise for propagatedBuildNativeInputs, etc. "buildNativeInputs" sounds like an imperative rather than a noun phrase.
21 lines
465 B
Nix
21 lines
465 B
Nix
{ stdenv, fetchurl, glib, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libmms-0.6.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libmms/${name}.tar.gz";
|
|
sha256 = "0cm4gq5jm8wj04biai6cyvlvdwv286vb3ycyzi870z9d2xi1p4q1";
|
|
};
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
meta = {
|
|
homepage = http://libmms.sourceforge.net;
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|