mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
9 lines
216 B
Nix
9 lines
216 B
Nix
{ callPackage, python3, ... } @ args:
|
|
|
|
callPackage ./generic.nix (args // {
|
|
version = "0.4.2";
|
|
sha256 = "sha256-iHWwll/jPeYriQ9s15O+f6/kGk5VLtv2QfH+1eu/Re0=";
|
|
# for gitdiff
|
|
extraBuildInputs = [ python3 ];
|
|
})
|