mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
dir2opus: delete
Upstream does not exist.
This commit is contained in:
parent
dda0967dce
commit
22ce075f1c
@ -1,36 +0,0 @@
|
||||
{ lib, stdenv, fetchFromGitHub, python, mutagen, wrapPython, opusTools, mpg123 }:
|
||||
|
||||
let version = "0.12.2"; in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dir2opus";
|
||||
inherit version;
|
||||
|
||||
pythonPath = [ mutagen ];
|
||||
buildInputs = [ wrapPython ];
|
||||
propagatedBuildInputs = [ opusTools mpg123 ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ehmry";
|
||||
repo = "dir2opus";
|
||||
rev = version;
|
||||
hash = "sha256-ZEsXwqxikWxFOz99wTI3rEK/rEYA+BSWGrCwW4q+FFc=";
|
||||
};
|
||||
|
||||
postPatch = "sed -i -e 's|#!/usr/bin/python|#!${python}/bin/python|' dir2opus";
|
||||
|
||||
installPhase =
|
||||
''
|
||||
mkdir -p $out/bin $out/share/man/man1
|
||||
cp dir2opus $out/bin
|
||||
cp dir2opus.1 $out/share/man/man1
|
||||
'';
|
||||
|
||||
postFixup = "wrapPythonPrograms";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/ehmry/dir2opus";
|
||||
maintainers = [ maintainers.ehmry ];
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -6703,10 +6703,6 @@ with pkgs;
|
||||
|
||||
diffutils = callPackage ../tools/text/diffutils { };
|
||||
|
||||
dir2opus = callPackage ../tools/audio/dir2opus {
|
||||
inherit (python2Packages) mutagen python wrapPython;
|
||||
};
|
||||
|
||||
dsp = callPackage ../tools/audio/dsp { };
|
||||
|
||||
dirdiff = callPackage ../tools/text/dirdiff {
|
||||
|
Loading…
Reference in New Issue
Block a user