nixpkgs/pkgs/by-name/ea/ear2ctl/package.nix

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

28 lines
688 B
Nix
Raw Normal View History

2024-06-22 10:59:13 +00:00
{ lib, rustPlatform, fetchFromGitLab, pkg-config, dbus }:
rustPlatform.buildRustPackage rec {
pname = "ear2ctl";
version = "0.1.0";
src = fetchFromGitLab {
owner = "bharadwaj-raju";
repo = "ear2ctl";
2024-06-22 10:59:13 +00:00
rev = version;
hash = "sha256-xaxl4opLMw9KEDpmNcgR1fBGUqO4BP5a/U52Kz+GAvc=";
};
cargoHash = "sha256-ax+/lvdEOjLnwE3Gvji7aaeF9KXjoOXdlTvxYDo8wGI=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ dbus ];
meta = with lib; {
description = "Linux controller for the Nothing Ear (2)";
2024-06-22 10:59:13 +00:00
homepage = "https://gitlab.com/bharadwaj-raju/ear2ctl";
license = licenses.gpl3Plus;
platforms = platforms.linux;
mainProgram = "ear2ctl";
};
}