diff --git a/README.md b/README.md index 82833e5..89e80dd 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,15 @@ # Install ```nix -with import {}; -fetchSubmodules = true; -let - tcrdd = callPackage (fetchFromGitHub { - owner = "FaustXVI"; - repo = "tcrdd"; - fetchSubmodules = true; - rev= "..."; - sha256 = "..."; - }) {}; -in stdenv.mkDerivation { - name = "..."; - buildInputs = [ - tcrdd - ]; -} +{ pkgs ? import {}}: + +pkgs.callPackage (pkgs.fetchFromGitHub { + owner = "FaustXVI"; + repo = "tcrdd"; + fetchSubmodules = true; + rev= "..."; + sha256 = "..."; +}) {} ``` # Usage