Skip to content

Commit

Permalink
aml: init at 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
primeos committed Jul 28, 2020
1 parent 931c554 commit 2f56b88
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/development/libraries/aml/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ stdenv, fetchFromGitHub, meson, pkg-config, ninja }:

stdenv.mkDerivation rec {
pname = "aml";
version = "0.1.0";

src = fetchFromGitHub {
owner = "any1";
repo = pname;
rev = "v${version}";
sha256 = "1pmiflkd9idnf6p0rnmccqqlj87k8crz9ixpx6rix671vnpk0xzi";
};

nativeBuildInputs = [ meson pkg-config ninja ];

meta = with stdenv.lib; {
description = "Another main loop";
inherit (src.meta) homepage;
license = licenses.isc;
platforms = platforms.unix;
maintainers = with maintainers; [ primeos ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11422,6 +11422,8 @@ in

amdvlk = callPackage ../development/libraries/amdvlk {};

aml = callPackage ../development/libraries/aml { };

amrnb = callPackage ../development/libraries/amrnb { };

amrwb = callPackage ../development/libraries/amrwb { };
Expand Down

0 comments on commit 2f56b88

Please sign in to comment.