3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/audio/songrec/default.nix

40 lines
838 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
}:
rustPlatform.buildRustPackage rec {
pname = "songrec";
2021-10-29 00:04:11 +01:00
version = "0.2.1";
2021-06-01 16:27:34 +01:00
src = fetchFromGitHub {
owner = "marin-m";
repo = pname;
rev = version;
2021-10-29 00:04:11 +01:00
sha256 = "sha256-pKHKM4XOuuZCr4neMe1AVqWMuZghwYNe+ifJCQhXG/c=";
2021-06-01 16:27:34 +01:00
};
2021-10-29 00:04:11 +01:00
cargoSha256 = "sha256-J3ezXBOGJwzIPTHXujHpswsgh9PFy110AOQ2pPJNm10=";
2021-06-01 16:27:34 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ alsa-lib 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 ];
};
}