nixpkgs/pkgs/applications/audio/songrec/default.nix

41 lines
850 B
Nix
Raw Normal View History

2021-06-01 16:27:34 +01:00
{ lib
, rustPlatform
, fetchFromGitHub
, gtk3
, openssl
, alsa-lib
2021-06-01 16:27:34 +01:00
, pkg-config
, ffmpeg
, dbus
2021-06-01 16:27:34 +01:00
}:
rustPlatform.buildRustPackage rec {
pname = "songrec";
version = "0.3.0";
2021-06-01 16:27:34 +01:00
src = fetchFromGitHub {
owner = "marin-m";
repo = pname;
rev = version;
sha256 = "sha256-aHZH3sQNUUPcMRySy8Di0XUoFo4qjGi2pi0phLwORaA=";
2021-06-01 16:27:34 +01:00
};
cargoSha256 = "sha256-EpkB43rMUJO6ouUV9TmQ+RSnGhX32DZHpKic1E6lUyU=";
2021-06-01 16:27:34 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ alsa-lib dbus gtk3 openssl ffmpeg ];
2021-06-01 16:27:34 +01:00
postInstall = ''
mv packaging/rootfs/usr/share $out/share
'';
2021-06-01 16:27:34 +01:00
meta = with lib; {
description = "An open-source Shazam client for Linux, written in Rust";
homepage = "https://github.com/marin-m/SongRec";
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ tcbravo ];
};
}