mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-17 10:24:07 +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.
29 lines
762 B
Diff
29 lines
762 B
Diff
--- chntpw-140201.orig/Makefile 2014-02-01 17:54:37.000000000 +0100
|
|
+++ chntpw-140201/Makefile 2022-04-21 00:14:45.000000000 +0200
|
|
@@ -6,24 +6,7 @@
|
|
# See INSTALL for more info.
|
|
#
|
|
|
|
-#SSLPATH=/usr/local/ssl
|
|
-OSSLPATH=/usr
|
|
-OSSLINC=$(OSSLPATH)/include
|
|
-
|
|
-CC=gcc
|
|
-
|
|
-# Force 32 bit
|
|
-CFLAGS= -DUSEOPENSSL -g -I. -I$(OSSLINC) -Wall -m32
|
|
-OSSLLIB=$(OSSLPATH)/lib
|
|
-
|
|
-# 64 bit if default for compiler setup
|
|
-#CFLAGS= -DUSEOPENSSL -g -I. -I$(OSSLINC) -Wall
|
|
-#OSSLLIB=$(OSSLPATH)/lib64
|
|
-
|
|
-
|
|
-# This is to link with whatever we have, SSL crypto lib we put in static
|
|
-#LIBS=-L$(OSSLLIB) $(OSSLLIB)/libcrypto.a
|
|
-LIBS=-L$(OSSLLIB)
|
|
+CFLAGS= -DUSEOPENSSL -g -I. -Wall
|
|
|
|
|
|
all: chntpw chntpw.static cpnt reged reged.static samusrgrp samusrgrp.static sampasswd sampasswd.static
|