blob: 592d48c96ab690e141d52e31499af1f40dcfe457 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
;;; Packages for software systhesis
;;;
;;; SPDX-FileCopyrightText: 2024-2025 Nguyễn Gia Phong
;;; SPDX-License-Identifier: GPL-3.0-or-later
(define-module (loftix synthesis)
#:use-module (gnu packages debug)
#:use-module (gnu packages elf)
#:use-module (gnu packages instrumentation)
#:use-module (gnu packages m4)
#:use-module (gnu packages parallel)
#:use-module (gnu packages python)
#:use-module (gnu packages python-build)
#:use-module (gnu packages python-xyz)
#:use-module (guix build-system gnu)
#:use-module (guix build-system pyproject)
#:use-module (guix build-system python)
#:use-module (guix download)
#:use-module (guix gexp)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (loftix fuzzing)
#:use-module (loftix patching))
(define-public python-pacfix
(package
(name "python-pacfix")
(version "0.0.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pacfix" version))
(sha256
(base32 "1gpr410gfwab5mg3k57r001mddqgxk9d5rbn89v1wczi51ljlsc5"))))
(build-system pyproject-build-system)
(native-inputs (list python-flit-core))
(propagated-inputs (list python-pysmt))
(arguments '(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "python" "-m" "unittest" "-v")))))))
(home-page "https://github.com/hsh814/pacfix-python")
(synopsis "PAC-learning-based program systhesizer")
(description "Pacfix systhesizes predicate expressions for program repair
from values in possitive and negative examples using a PAC learning algorithm.")
(license license:expat)))
(define-public taosc
(package
(name "taosc")
(version "0.0.1")
(source
(origin
(method url-fetch)
(uri (string-append
"https://trong.loang.net/~cnx/taosc/snapshot/taosc-"
version ".tar.gz"))
(sha256
(base32 "08rjivhg3brx6n5jgxfwcqbwb3ranrvjxwrdbqd8pwrpfa5jhqy2"))))
(build-system gnu-build-system)
(arguments
(list #:make-flags #~(list (string-append "PREFIX=" #$output))
#:phases
#~(modify-phases %standard-phases
(delete 'configure)
(delete 'check)
(add-after 'install 'wrap
(lambda* (#:key inputs outputs #:allow-other-keys)
(wrap-program (search-input-file outputs "bin/taosc-synth")
`("GUIX_PYTHONPATH" = (,(getenv "GUIX_PYTHONPATH")))))))
#:validate-runpath? #f))
(native-inputs (list m4))
(inputs (list dyninst))
(propagated-inputs (list afl-dyninst aflplusplus
e9patch patchelf
python python-pacfix
parallel))
(synopsis "Emergency binary patcher")
(description "Taosc generates emergent fixes for binaries.")
(home-page "https://trong.loang.net/~cnx/taosc")
(license license:agpl3+)))
|