format nix
This commit is contained in:
parent
3dff1ae3eb
commit
784fade8c0
|
@ -15,9 +15,11 @@
|
||||||
overlay = final: prev:
|
overlay = final: prev:
|
||||||
let
|
let
|
||||||
system = final.system;
|
system = final.system;
|
||||||
fold-to-ascii = final.python3Packages.callPackage ./nix-extra-deps/fold-to-ascii.nix { };
|
fold-to-ascii =
|
||||||
|
final.python3Packages.callPackage ./nix-extra-deps/fold-to-ascii.nix
|
||||||
|
{ };
|
||||||
in {
|
in {
|
||||||
fold-to-ascii = {fold-to-ascii = fold-to-ascii;};
|
fold-to-ascii = { fold-to-ascii = fold-to-ascii; };
|
||||||
musicutil = final.python3Packages.buildPythonApplication rec {
|
musicutil = final.python3Packages.buildPythonApplication rec {
|
||||||
pname = "musicutil";
|
pname = "musicutil";
|
||||||
version = "latest";
|
version = "latest";
|
||||||
|
@ -57,8 +59,7 @@
|
||||||
|
|
||||||
devShell = pkgs.mkShell {
|
devShell = pkgs.mkShell {
|
||||||
inputsFrom = [ self.packages.${system}.musicutil ];
|
inputsFrom = [ self.packages.${system}.musicutil ];
|
||||||
buildInputs = with pkgs;
|
buildInputs = with pkgs; [
|
||||||
[
|
|
||||||
nixUnstable
|
nixUnstable
|
||||||
mutagen
|
mutagen
|
||||||
self.packages.${system}.fold-to-ascii
|
self.packages.${system}.fold-to-ascii
|
||||||
|
|
Loading…
Reference in a new issue