diff options
| author | Ophestra <cat@gensokyo.uk> | 2026-05-18 17:53:48 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2026-05-18 17:54:01 +0900 |
| commit | 37df040d85e06100c69c6aa3560b2e4ebf977255 (patch) | |
| tree | c82f47e38a8e53e4b285e4c6c5611dba578d834b /internal/rosa/package/gnu | |
| parent | 0360e779f3fb9dc770e1f33420ca5b8f8f638666 (diff) | |
internal/rosa: evaluate packages from fs
This migrates GNU sed to azalea, and resulting IR matches.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/package/gnu')
| -rw-r--r-- | internal/rosa/package/gnu/package.az | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/internal/rosa/package/gnu/package.az b/internal/rosa/package/gnu/package.az new file mode 100644 index 00000000..a50c1a90 --- /dev/null +++ b/internal/rosa/package/gnu/package.az @@ -0,0 +1,22 @@ +// GNU software with trivial packaging. + +package sed { + description = "a non-interactive command-line text editor"; + website = "https://www.gnu.org/software/sed"; + anitya = 4789; + + version* = "4.10"; + source = remoteTar { + url = "https://ftpmirror.gnu.org/gnu/sed/sed-"+version+".tar.gz"; + checksum = "TXTRFQJCyflb-bpBRI2S5Y1DpplwvT7-KfXtpqN4AdZgZ5OtI6yStn1-bkhDKx51"; + compress = gzip; + }; + + exec = make {}; + + inputs = [ + diffutils, + + kernel-headers, + ]; +} |
