nixpkgs/pkgs/by-name/am/aml/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
592 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, meson, pkg-config, ninja }:
2020-07-28 12:49:06 +00:00
stdenv.mkDerivation rec {
pname = "aml";
version = "0.3.0";
2020-07-28 12:49:06 +00:00
src = fetchFromGitHub {
owner = "any1";
repo = pname;
rev = "v${version}";
sha256 = "sha256-BX+MRqvnwwLPhz22m0gfJ2EkW31KQEi/YTgOCMcQk2Q=";
2020-07-28 12:49:06 +00:00
};
nativeBuildInputs = [ meson pkg-config ninja ];
meta = with lib; {
2020-07-28 12:49:06 +00:00
description = "Another main loop";
inherit (src.meta) homepage;
license = licenses.isc;
platforms = platforms.unix;
maintainers = with maintainers; [ primeos ];
broken = stdenv.hostPlatform.isDarwin;
2020-07-28 12:49:06 +00:00
};
}