mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 15:23:26 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
17 lines
512 B
Diff
17 lines
512 B
Diff
--- tuxpaint-0.9.22/src/tuxpaint-completion.bash~ 1970-01-01 01:00:01.000000000 +0100
|
|
+++ tuxpaint-0.9.22/src/tuxpaint-completion.bash 2018-03-06 10:54:03.437560921 +0100
|
|
@@ -8,7 +8,6 @@
|
|
# FIXME: See http://www.debian-administration.org/articles/316 for an intro
|
|
# to how we should be doing this... -bjk 2009.09.09
|
|
|
|
-have tuxpaint &&
|
|
_tuxpaint()
|
|
{
|
|
local cur
|
|
@@ -96,4 +95,4 @@
|
|
fi
|
|
|
|
}
|
|
-[ "${have:-}" ] && complete -F _tuxpaint $filenames tuxpaint
|
|
+complete -F _tuxpaint $filenames tuxpaint
|