4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
36 lines
934 B
Nix
36 lines
934 B
Nix
{ lib, stdenv, fetchurl, 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 = fetchurl {
|
|
url = "https://github.com/ehmry/dir2opus/archive/${version}.tar.gz";
|
|
name = "${pname}-${version}.tar.gz";
|
|
sha256 = "0bl8fa9zhccihnj1v3lpz5jb737frf9za06xb7j5rsjws6xky80d";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|