mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
Merge pull request #114971 from eduardosm/isrcsubmit
isrcsubmit: init at 2.1.0
This commit is contained in:
commit
eef00d3046
2 changed files with 26 additions and 0 deletions
24
pkgs/tools/audio/isrcsubmit/default.nix
Normal file
24
pkgs/tools/audio/isrcsubmit/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ lib, stdenv, fetchFromGitHub, python3Packages }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "isrcsubmit";
|
||||
version = "2.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "JonnyJD";
|
||||
repo = "musicbrainz-isrcsubmit";
|
||||
rev = "v${version}";
|
||||
sha256 = "1lqs4jl2xv1zxmf0xsihk9rxzx2awq87g51vd7y3cq1vhj1icxqa";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [ musicbrainzngs discid ];
|
||||
|
||||
meta = with lib; {
|
||||
# drutil is required on Darwin, which does not seem to be available in nixpkgs
|
||||
broken = stdenv.isDarwin;
|
||||
description = "Script to submit ISRCs from disc to MusicBrainz";
|
||||
license = licenses.gpl3Plus;
|
||||
homepage = "http://jonnyjd.github.io/musicbrainz-isrcsubmit/";
|
||||
maintainers = with maintainers; [ eduardosm ];
|
||||
};
|
||||
}
|
|
@ -5593,6 +5593,8 @@ in
|
|||
|
||||
ispike = callPackage ../development/libraries/science/robotics/ispike { };
|
||||
|
||||
isrcsubmit = callPackage ../tools/audio/isrcsubmit { };
|
||||
|
||||
isync = callPackage ../tools/networking/isync {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue