├── % ├── collections │ ├── post_checkout.nims │ ├── post_pull.nims │ └── pre_pull.nims ├── glm │ ├── post_checkout.nims │ ├── post_pull.nims │ └── pre_pull.nims ├── latest_tag.nims ├── nesm │ ├── post_checkout.nims │ ├── post_pull.nims │ ├── pre_pull.nims │ └── sets1.patch ├── nimpb │ ├── generator1.patch │ ├── json1.patch │ ├── post_checkout.nims │ ├── post_pull.nims │ └── pre_pull.nims ├── patches_apply.nims ├── patches_reverse.nims ├── progress │ ├── dots.patch │ ├── post_checkout.nims │ ├── post_pull.nims │ └── pre_pull.nims ├── spryvm │ ├── nimble.patch │ ├── post_checkout.nims │ ├── post_pull.nims │ └── pre_pull.nims ├── stew │ ├── post_checkout.nims │ ├── post_pull.nims │ └── pre_pull.nims ├── winim │ ├── post_checkout.nims │ ├── post_pull.nims │ └── pre_pull.nims └── xcm │ ├── post_checkout.nims │ ├── post_pull.nims │ ├── pre_pull.nims │ └── xbool.patch ├── LICENSE ├── README.md ├── TODO ├── nimp.nim ├── nimp.nim.cfg ├── nimp.nimble └── pkg ├── dump.nims ├── install.nims ├── test.nims └── uninstall.nims /%/collections/post_checkout.nims: -------------------------------------------------------------------------------- 1 | post_pull.nims -------------------------------------------------------------------------------- /%/collections/post_pull.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/collections/post_pull.nims -------------------------------------------------------------------------------- /%/collections/pre_pull.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/collections/pre_pull.nims -------------------------------------------------------------------------------- /%/glm/post_checkout.nims: -------------------------------------------------------------------------------- 1 | post_pull.nims -------------------------------------------------------------------------------- /%/glm/post_pull.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/glm/post_pull.nims -------------------------------------------------------------------------------- /%/glm/pre_pull.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/glm/pre_pull.nims -------------------------------------------------------------------------------- /%/latest_tag.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/latest_tag.nims -------------------------------------------------------------------------------- /%/nesm/post_checkout.nims: -------------------------------------------------------------------------------- 1 | post_pull.nims -------------------------------------------------------------------------------- /%/nesm/post_pull.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/nesm/post_pull.nims -------------------------------------------------------------------------------- /%/nesm/pre_pull.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/nesm/pre_pull.nims -------------------------------------------------------------------------------- /%/nesm/sets1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/nesm/sets1.patch -------------------------------------------------------------------------------- /%/nimpb/generator1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/nimpb/generator1.patch -------------------------------------------------------------------------------- /%/nimpb/json1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/nimpb/json1.patch -------------------------------------------------------------------------------- /%/nimpb/post_checkout.nims: -------------------------------------------------------------------------------- 1 | post_pull.nims -------------------------------------------------------------------------------- /%/nimpb/post_pull.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/nimpb/post_pull.nims -------------------------------------------------------------------------------- /%/nimpb/pre_pull.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/nimpb/pre_pull.nims -------------------------------------------------------------------------------- /%/patches_apply.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/patches_apply.nims -------------------------------------------------------------------------------- /%/patches_reverse.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/patches_reverse.nims -------------------------------------------------------------------------------- /%/progress/dots.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/progress/dots.patch -------------------------------------------------------------------------------- /%/progress/post_checkout.nims: -------------------------------------------------------------------------------- 1 | ../patches_apply.nims -------------------------------------------------------------------------------- /%/progress/post_pull.nims: -------------------------------------------------------------------------------- 1 | ../patches_apply.nims -------------------------------------------------------------------------------- /%/progress/pre_pull.nims: -------------------------------------------------------------------------------- 1 | ../patches_reverse.nims -------------------------------------------------------------------------------- /%/spryvm/nimble.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/spryvm/nimble.patch -------------------------------------------------------------------------------- /%/spryvm/post_checkout.nims: -------------------------------------------------------------------------------- 1 | ../patches_apply.nims -------------------------------------------------------------------------------- /%/spryvm/post_pull.nims: -------------------------------------------------------------------------------- 1 | ../patches_apply.nims -------------------------------------------------------------------------------- /%/spryvm/pre_pull.nims: -------------------------------------------------------------------------------- 1 | ../patches_reverse.nims -------------------------------------------------------------------------------- /%/stew/post_checkout.nims: -------------------------------------------------------------------------------- 1 | post_pull.nims -------------------------------------------------------------------------------- /%/stew/post_pull.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/stew/post_pull.nims -------------------------------------------------------------------------------- /%/stew/pre_pull.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/stew/pre_pull.nims -------------------------------------------------------------------------------- /%/winim/post_checkout.nims: -------------------------------------------------------------------------------- 1 | post_pull.nims -------------------------------------------------------------------------------- /%/winim/post_pull.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/winim/post_pull.nims -------------------------------------------------------------------------------- /%/winim/pre_pull.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/winim/pre_pull.nims -------------------------------------------------------------------------------- /%/xcm/post_checkout.nims: -------------------------------------------------------------------------------- 1 | ../patches_apply.nims -------------------------------------------------------------------------------- /%/xcm/post_pull.nims: -------------------------------------------------------------------------------- 1 | ../patches_apply.nims -------------------------------------------------------------------------------- /%/xcm/pre_pull.nims: -------------------------------------------------------------------------------- 1 | ../patches_reverse.nims -------------------------------------------------------------------------------- /%/xcm/xbool.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/%/xcm/xbool.patch -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/TODO -------------------------------------------------------------------------------- /nimp.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/nimp.nim -------------------------------------------------------------------------------- /nimp.nim.cfg: -------------------------------------------------------------------------------- 1 | -d:ssl -d:release 2 | -------------------------------------------------------------------------------- /nimp.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/nimp.nimble -------------------------------------------------------------------------------- /pkg/dump.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/pkg/dump.nims -------------------------------------------------------------------------------- /pkg/install.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/pkg/install.nims -------------------------------------------------------------------------------- /pkg/test.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/pkg/test.nims -------------------------------------------------------------------------------- /pkg/uninstall.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c-blake/nimp/HEAD/pkg/uninstall.nims --------------------------------------------------------------------------------