nix-on-droid/overlays/typespeed.nix
2020-06-12 21:27:39 +02:00

15 lines
316 B
Nix

# Copyright (c) 2019-2020, see AUTHORS. Licensed under MIT License, see LICENSE.
self: super:
let
nixpkgs = import ./lib/nixpkgs.nix { inherit super; };
in
{
typespeed = nixpkgs.typespeed.overrideAttrs (old: {
patches = nixpkgs.typespeed.patches ++ [
./typespeed-no-drop-priv.patch
];
});
}