mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 04:13:12 +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.
22 lines
902 B
Diff
22 lines
902 B
Diff
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -41,14 +41,14 @@
|
|
${INSTALL} -d ${DESTDIR}${bindir}
|
|
${INSTALL} -d ${DESTDIR}${mandir}/man8
|
|
${INSTALL} -d ${DESTDIR}${CONFDIR}
|
|
- ${INSTALL} -o 0 -g 0 scponly ${DESTDIR}${bindir}/scponly
|
|
- ${INSTALL} -o 0 -g 0 -m 0644 scponly.8 ${DESTDIR}${mandir}/man8/scponly.8
|
|
- ${INSTALL} -o 0 -g 0 -m 0644 debuglevel ${DESTDIR}${DEBUGFILE}
|
|
+ ${INSTALL} scponly ${DESTDIR}${bindir}/scponly
|
|
+ ${INSTALL} -m 0644 scponly.8 ${DESTDIR}${mandir}/man8/scponly.8
|
|
+ ${INSTALL} -m 0644 debuglevel ${DESTDIR}${DEBUGFILE}
|
|
if test "x${CHROOTED_NAME}" != "x"; then \
|
|
${INSTALL} -d ${DESTDIR}${sbindir}; \
|
|
rm -f ${DESTDIR}${sbindir}/${CHROOTED_NAME}; \
|
|
cp scponly ${CHROOTED_NAME}; \
|
|
- ${INSTALL} -o 0 -g 0 -m 4755 ${CHROOTED_NAME} ${DESTDIR}${sbindir}/${CHROOTED_NAME}; \
|
|
+ ${INSTALL} ${CHROOTED_NAME} ${DESTDIR}${sbindir}/${CHROOTED_NAME}; \
|
|
fi
|
|
|
|
debuglevel:
|