mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 13:16:40 +03:00
5 lines
126 B
Nix
5 lines
126 B
Nix
|
{ pkgs ? import ../. {} }:
|
||
|
(import ./default.nix).overrideAttrs (x: {
|
||
|
buildInputs = x.buildInputs ++ [ pkgs.xmloscopy ];
|
||
|
})
|