commit
63ab3672b7
35
pkgs/applications/audio/songrec/default.nix
Normal file
35
pkgs/applications/audio/songrec/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, gtk3
|
||||
, openssl
|
||||
, alsaLib
|
||||
, pkg-config
|
||||
, ffmpeg
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "songrec";
|
||||
version = "0.1.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "marin-m";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-6siGLegNgvLdP7engwpKmhzWYqBXcMsfaXhJJ1tIqJg=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-H4qJYcFjip71EVTGw50goj0HjKN9fmjQZqQDhaSKlaQ=";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
buildInputs = [ alsaLib gtk3 openssl ffmpeg ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -25527,6 +25527,8 @@ in
|
||||
|
||||
softmaker-office = callPackage ../applications/office/softmaker/softmaker_office.nix {};
|
||||
|
||||
songrec = callPackage ../applications/audio/songrec {};
|
||||
|
||||
spacegun = callPackage ../applications/networking/cluster/spacegun {};
|
||||
|
||||
stride = callPackage ../applications/networking/instant-messengers/stride { };
|
||||
|
Loading…
Reference in New Issue
Block a user