cyanrip: init at 0.7.0
This commit is contained in:
parent
cdf968d946
commit
c74c196152
35
cyanrip/default.nix
Normal file
35
cyanrip/default.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, ffmpeg
|
||||
, libcdio
|
||||
, libcdio-paranoia
|
||||
, curl
|
||||
, libmusicbrainz5
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cyanrip";
|
||||
version = "0.7.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cyanreg";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0lgb92sfpf4w3nj5vlj6j7931mj2q3cmcx1app9snf853jk9ahmw";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||
buildInputs = [ ffmpeg libcdio libcdio-paranoia curl libmusicbrainz5 ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fully featured CD ripping program able to take out most of the tedium";
|
||||
homepage = "https://github.com/cyanreg/cyanrip";
|
||||
license = with licenses; [ lgpl21Plus lgpl3Plus ]; # some files have lgpl21Plus header, repo has lgpl3Plus LICENSE
|
||||
maintainers = with maintainers; [ sbruder ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -24,6 +24,8 @@
|
|||
};
|
||||
python3Packages = prev.recurseIntoAttrs final.python3.pkgs;
|
||||
|
||||
cyanrip = callPackage ./cyanrip { };
|
||||
|
||||
deemix = callPythonPackage ./deemix { };
|
||||
|
||||
textidote = callPackage ./textidote { };
|
||||
|
@ -53,6 +55,7 @@
|
|||
(n: v: lib.elem system v.meta.platforms)
|
||||
{
|
||||
inherit (pkgs)
|
||||
cyanrip
|
||||
deemix
|
||||
textidote
|
||||
VisiCut;
|
||||
|
|
Loading…
Reference in a new issue