guix-cookbook.de.po 277 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435
  1. # German translations for the Guix Cookbook.
  2. # Copyright (C) 2019, 2020 the authors of Guix (msgids) and the following authors (msgstr)
  3. # This file is distributed under the same license as the guix manual package.
  4. # Florian Pelz <pelzflorian@pelzflorian.de>, 2020, 2021.
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: guix 1.0.1.4876-09145-dirty\n"
  8. "Report-Msgid-Bugs-To: bug-guix@gnu.org\n"
  9. "POT-Creation-Date: 2021-10-08 14:00+0000\n"
  10. "PO-Revision-Date: 2021-08-13 22:04+0000\n"
  11. "Last-Translator: Florian Pelz <pelzflorian@pelzflorian.de>\n"
  12. "Language-Team: German <https://translate.fedoraproject.org/projects/guix/documentation-cookbook/de/>\n"
  13. "Language: de\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  18. "X-Generator: Weblate 4.7.2\n"
  19. #. type: Plain text
  20. #: guix-git/doc/guix-cookbook.texi:7
  21. msgid "@documentencoding UTF-8"
  22. msgstr ""
  23. "@documentencoding UTF-8\n"
  24. "@documentlanguage de\n"
  25. "@frenchspacing on"
  26. #. type: top
  27. #: guix-git/doc/guix-cookbook.texi:7 guix-git/doc/guix-cookbook.texi:36
  28. #: guix-git/doc/guix-cookbook.texi:50
  29. #, no-wrap
  30. msgid "GNU Guix Cookbook"
  31. msgstr "GNU-Guix-Kochbuch"
  32. #. type: copying
  33. #: guix-git/doc/guix-cookbook.texi:21
  34. #, fuzzy
  35. #| msgid "Copyright @copyright{} 2019 Ricardo Wurmus@* Copyright @copyright{} 2019 Efraim Flashner@* Copyright @copyright{} 2019 Pierre Neidhardt@* Copyright @copyright{} 2020 Oleg Pykhalov@* Copyright @copyright{} 2020 Matthew Brooks@* Copyright @copyright{} 2020 Marcin Karpezo@* Copyright @copyright{} 2020 Brice Waegeneire@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020 Christopher Lemmer Webber Copyright @copyright{} 2021 Joshua Branson@*"
  36. msgid "Copyright @copyright{} 2019 Ricardo Wurmus@* Copyright @copyright{} 2019 Efraim Flashner@* Copyright @copyright{} 2019 Pierre Neidhardt@* Copyright @copyright{} 2020 Oleg Pykhalov@* Copyright @copyright{} 2020 Matthew Brooks@* Copyright @copyright{} 2020 Marcin Karpezo@* Copyright @copyright{} 2020 Brice Waegeneire@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020 Christine Lemmer-Webber@* Copyright @copyright{} 2021 Joshua Branson@*"
  37. msgstr "Copyright @copyright{} 2019 Ricardo Wurmus@* Copyright @copyright{} 2019 Efraim Flashner@* Copyright @copyright{} 2019 Pierre Neidhardt@* Copyright @copyright{} 2020 Oleg Pykhalov@* Copyright @copyright{} 2020 Matthew Brooks@* Copyright @copyright{} 2020 Marcin Karpezo@* Copyright @copyright{} 2020 Brice Waegeneire@* Copyright @copyright{} 2020 André Batista@* Copyright @copyright{} 2020 Christopher Lemmer Webber Copyright @copyright{} 2021 Joshua Branson@*"
  38. #. type: copying
  39. #: guix-git/doc/guix-cookbook.texi:28
  40. msgid "Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU Free Documentation License''."
  41. msgstr "Es ist Ihnen gestattet, dieses Dokument zu vervielfältigen, weiterzugeben und/oder zu verändern, unter den Bedingungen der GNU Free Documentation License, entweder gemäß Version 1.3 der Lizenz oder (nach Ihrer Option) einer späteren Version, die von der Free Software Foundation veröffentlicht wurde, ohne unveränderliche Abschnitte, ohne vorderen Umschlagtext und ohne hinteren Umschlagtext. Eine Kopie der Lizenz finden Sie im Abschnitt mit dem Titel „GNU Free Documentation License“."
  42. #. type: dircategory
  43. #: guix-git/doc/guix-cookbook.texi:30
  44. #, no-wrap
  45. msgid "System administration"
  46. msgstr "Systemadministration"
  47. #. type: menuentry
  48. #: guix-git/doc/guix-cookbook.texi:33
  49. msgid "Guix cookbook: (guix-cookbook)"
  50. msgstr "Guix-Kochbuch: (guix-cookbook.de)"
  51. #. type: menuentry
  52. #: guix-git/doc/guix-cookbook.texi:33
  53. msgid "Tutorials and examples for GNU Guix."
  54. msgstr "Anleitungen und Beispiele für GNU Guix."
  55. #. type: subtitle
  56. #: guix-git/doc/guix-cookbook.texi:37
  57. #, no-wrap
  58. msgid "Tutorials and examples for using the GNU Guix Functional Package Manager"
  59. msgstr "Anleitungen und Beispiele, wie man den funktionalen Paketmanager GNU Guix benutzt"
  60. #. type: author
  61. #: guix-git/doc/guix-cookbook.texi:38
  62. #, no-wrap
  63. msgid "The GNU Guix Developers"
  64. msgstr "Die Entwickler von GNU Guix"
  65. #. type: node
  66. #: guix-git/doc/guix-cookbook.texi:49
  67. #, no-wrap
  68. msgid "Top"
  69. msgstr "Top"
  70. #. type: Plain text
  71. #: guix-git/doc/guix-cookbook.texi:56
  72. msgid "This document presents tutorials and detailed examples for GNU@tie{}Guix, a functional package management tool written for the GNU system. Please @pxref{Top,,, guix, GNU Guix reference manual} for details about the system, its API, and related concepts."
  73. msgstr "Dieses Dokument stellt Anleitungen und detaillierte Beispiele vor, wie man GNU@tie{}Guix benutzt, ein Werkzeug zur funktionalen Paketverwaltung, das für das GNU-System geschrieben wurde. Bitte lesen Sie Details zum System, seinen Programmierschnittstellen und ähnlichen Konzepten im @ref{Top,,, guix.de, Referenzhandbuch zu GNU Guix} nach."
  74. #. type: Plain text
  75. #: guix-git/doc/guix-cookbook.texi:66
  76. #, fuzzy
  77. #| msgid "If you would like to translate this document in your native language, consider joining @uref{https://translate.fedoraproject.org/projects/guix/documentation-cookbook, Weblate}."
  78. msgid "This manual is also available in French (@pxref{Top,,, guix-cookbook.fr, Livre de recettes de GNU Guix}) and German (@pxref{Top,,, guix-cookbook.de, GNU-Guix-Kochbuch}). If you would like to translate this document in your native language, consider joining @uref{https://translate.fedoraproject.org/projects/guix/documentation-cookbook, Weblate} (@pxref{Translating Guix,,, guix, GNU Guix reference manual})."
  79. msgstr "Wenn Sie dieses Dokument in Ihre eigene Sprache übersetzen möchten, dann sind Sie bei @uref{https://translate.fedoraproject.org/projects/guix/documentation-cookbook, Weblate} herzlich willkommen."
  80. #. type: chapter
  81. #: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:82
  82. #: guix-git/doc/guix-cookbook.texi:98 guix-git/doc/guix-cookbook.texi:99
  83. #, no-wrap
  84. msgid "Scheme tutorials"
  85. msgstr "Anleitungen zu Scheme"
  86. #. type: menuentry
  87. #: guix-git/doc/guix-cookbook.texi:73
  88. msgid "Meet your new favorite language!"
  89. msgstr "Lernen Sie Ihre neue Lieblingssprache kennen!"
  90. #. type: chapter
  91. #: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:86
  92. #: guix-git/doc/guix-cookbook.texi:305 guix-git/doc/guix-cookbook.texi:306
  93. #, no-wrap
  94. msgid "Packaging"
  95. msgstr "Paketerstellung"
  96. #. type: menuentry
  97. #: guix-git/doc/guix-cookbook.texi:73
  98. msgid "Packaging tutorials"
  99. msgstr "Anleitungen, wie man Pakete erstellt."
  100. #. type: chapter
  101. #: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:90
  102. #: guix-git/doc/guix-cookbook.texi:1348 guix-git/doc/guix-cookbook.texi:1349
  103. #, no-wrap
  104. msgid "System Configuration"
  105. msgstr "Systemkonfiguration"
  106. #. type: menuentry
  107. #: guix-git/doc/guix-cookbook.texi:73
  108. msgid "Customizing the GNU System"
  109. msgstr "Das GNU-System anpassen."
  110. #. type: chapter
  111. #: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:2446
  112. #: guix-git/doc/guix-cookbook.texi:2447
  113. #, no-wrap
  114. msgid "Advanced package management"
  115. msgstr "Fortgeschrittene Paketverwaltung"
  116. # angelehnt an Alle Macht dem Volke in Übersetzung von Die Mutter
  117. #. type: menuentry
  118. #: guix-git/doc/guix-cookbook.texi:73
  119. msgid "Power to the users!"
  120. msgstr "Alle Macht den Nutzern!"
  121. #. type: chapter
  122. #: guix-git/doc/guix-cookbook.texi:73 guix-git/doc/guix-cookbook.texi:2844
  123. #: guix-git/doc/guix-cookbook.texi:2845
  124. #, no-wrap
  125. msgid "Environment management"
  126. msgstr "Umgebungen verwalten"
  127. #. type: menuentry
  128. #: guix-git/doc/guix-cookbook.texi:73
  129. msgid "Control environment"
  130. msgstr "Umgebungen festlegen."
  131. #. type: chapter
  132. #: guix-git/doc/guix-cookbook.texi:77 guix-git/doc/guix-cookbook.texi:2968
  133. #: guix-git/doc/guix-cookbook.texi:2969
  134. #, no-wrap
  135. msgid "Acknowledgments"
  136. msgstr "Danksagungen"
  137. #. type: menuentry
  138. #: guix-git/doc/guix-cookbook.texi:77
  139. msgid "Thanks!"
  140. msgstr "Danke!"
  141. #. type: appendix
  142. #: guix-git/doc/guix-cookbook.texi:77 guix-git/doc/guix-cookbook.texi:2993
  143. #: guix-git/doc/guix-cookbook.texi:2994
  144. #, no-wrap
  145. msgid "GNU Free Documentation License"
  146. msgstr "GNU-Lizenz für freie Dokumentation"
  147. #. type: menuentry
  148. #: guix-git/doc/guix-cookbook.texi:77
  149. msgid "The license of this document."
  150. msgstr "Die Lizenz dieses Dokuments."
  151. #. type: unnumbered
  152. #: guix-git/doc/guix-cookbook.texi:77 guix-git/doc/guix-cookbook.texi:2999
  153. #: guix-git/doc/guix-cookbook.texi:3000
  154. #, no-wrap
  155. msgid "Concept Index"
  156. msgstr "Konzeptverzeichnis"
  157. #. type: menuentry
  158. #: guix-git/doc/guix-cookbook.texi:77
  159. msgid "Concepts."
  160. msgstr "Konzepte."
  161. #. type: menuentry
  162. #: guix-git/doc/guix-cookbook.texi:80
  163. msgid "--- The Detailed Node Listing ---"
  164. msgstr "--- Detaillierte Liste der Knoten ---"
  165. #. type: section
  166. #: guix-git/doc/guix-cookbook.texi:84 guix-git/doc/guix-cookbook.texi:112
  167. #: guix-git/doc/guix-cookbook.texi:113
  168. #, no-wrap
  169. msgid "A Scheme Crash Course"
  170. msgstr "Ein Schnellkurs in Scheme"
  171. #. type: menuentry
  172. #: guix-git/doc/guix-cookbook.texi:84
  173. msgid "Learn the basics of Scheme"
  174. msgstr "Die Grundzüge von Scheme erlernen."
  175. #. type: section
  176. #: guix-git/doc/guix-cookbook.texi:88 guix-git/doc/guix-cookbook.texi:317
  177. #: guix-git/doc/guix-cookbook.texi:319 guix-git/doc/guix-cookbook.texi:320
  178. #, no-wrap
  179. msgid "Packaging Tutorial"
  180. msgstr "Anleitung zum Paketeschreiben"
  181. #. type: menuentry
  182. #: guix-git/doc/guix-cookbook.texi:88
  183. msgid "Let's add a package to Guix!"
  184. msgstr "Lasst uns ein Paket zu Guix beitragen!"
  185. #. type: section
  186. #: guix-git/doc/guix-cookbook.texi:93 guix-git/doc/guix-cookbook.texi:1368
  187. #: guix-git/doc/guix-cookbook.texi:1370 guix-git/doc/guix-cookbook.texi:1371
  188. #, no-wrap
  189. msgid "Auto-Login to a Specific TTY"
  190. msgstr "Automatisch an virtueller Konsole anmelden"
  191. #. type: menuentry
  192. #: guix-git/doc/guix-cookbook.texi:93 guix-git/doc/guix-cookbook.texi:1368
  193. msgid "Automatically Login a User to a Specific TTY"
  194. msgstr "Benutzer an einem bestimmten TTY automatisch anmelden."
  195. #. type: section
  196. #: guix-git/doc/guix-cookbook.texi:93 guix-git/doc/guix-cookbook.texi:1368
  197. #: guix-git/doc/guix-cookbook.texi:1415 guix-git/doc/guix-cookbook.texi:1416
  198. #, no-wrap
  199. msgid "Customizing the Kernel"
  200. msgstr "Den Kernel anpassen"
  201. #. type: menuentry
  202. #: guix-git/doc/guix-cookbook.texi:93 guix-git/doc/guix-cookbook.texi:1368
  203. msgid "Creating and using a custom Linux kernel on Guix System."
  204. msgstr "Einen eigenen Linux-Kernel auf Guix System erzeugen und benutzen."
  205. #. type: Plain text
  206. #: guix-git/doc/guix-cookbook.texi:105
  207. msgid "GNU@tie{}Guix is written in the general purpose programming language Scheme, and many of its features can be accessed and manipulated programmatically. You can use Scheme to generate package definitions, to modify them, to build them, to deploy whole operating systems, etc."
  208. msgstr "GNU@tie{}Guix ist in Scheme geschrieben, einer für alle Anwendungszwecke geeigneten Programmiersprache, und viele Funktionalitäten von Guix können programmatisch angesteuert und verändert werden. Sie können Scheme benutzen, um Paketdefinitionen zu erzeugen, abzuändern, ganze Betriebssysteme einzuspielen etc."
  209. #. type: Plain text
  210. #: guix-git/doc/guix-cookbook.texi:109
  211. msgid "Knowing the basics of how to program in Scheme will unlock many of the advanced features Guix provides --- and you don't even need to be an experienced programmer to use them!"
  212. msgstr "Wenn man die Grundzüge kennt, wie man in Scheme programmiert, bekommt man Zugang zu vielen der fortgeschrittenen Funktionen von Guix — und Sie müssen dazu nicht einmal ein erfahrener Programmierer sein!"
  213. #. type: Plain text
  214. #: guix-git/doc/guix-cookbook.texi:111
  215. msgid "Let's get started!"
  216. msgstr "Legen wir los!"
  217. #. type: cindex
  218. #: guix-git/doc/guix-cookbook.texi:115
  219. #, no-wrap
  220. msgid "Scheme, crash course"
  221. msgstr "Scheme, Schnellkurs"
  222. #. type: Plain text
  223. #: guix-git/doc/guix-cookbook.texi:121
  224. msgid "Guix uses the Guile implementation of Scheme. To start playing with the language, install it with @code{guix install guile} and start a @dfn{REPL}---short for @uref{https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop, @dfn{read-eval-print loop}}---by running @code{guile} from the command line."
  225. msgstr "Die von Guix benutzte Scheme-Implementierung nennt sich Guile. Um mit der Sprache herumspielen zu können, installieren Sie Guile mit @code{guix install guile} und starten eine interaktive Programmierumgebung (englisch @uref{https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop, Read-Eval-Print-Loop}, kurz REPL), indem Sie @code{guile} auf der Befehlszeile ausführen."
  226. #. type: Plain text
  227. #: guix-git/doc/guix-cookbook.texi:124
  228. msgid "Alternatively you can also run @code{guix environment --ad-hoc guile -- guile} if you'd rather not have Guile installed in your user profile."
  229. msgstr "Alternativ können Sie auch den Befehl @code{guix environment --ad-hoc guile -- guile} ausführen, wenn Sie Guile lieber @emph{nicht} in Ihr Nutzerprofil installieren wollen."
  230. #. type: Plain text
  231. #: guix-git/doc/guix-cookbook.texi:130
  232. msgid "In the following examples, lines show what you would type at the REPL; lines starting with ``@result{}'' show evaluation results, while lines starting with ``@print{}'' show things that get printed. @xref{Using Guile Interactively,,, guile, GNU Guile Reference Manual}, for more details on the REPL."
  233. msgstr "In den folgenden Beispielen stehen die Zeilen dafür, was Sie auf der REPL eintippen; wenn eine Zeile mit „@result{}“ beginnt, zeigt sie das Ergebnis einer Auswertung, während Zeilen, die mit „@print{}“ beginnen, für eine angezeigte Ausgabe stehen. Siehe @ref{Using Guile Interactively,,, guile, das Referenzhandbuch zu GNU Guile} für mehr Details zur REPL."
  234. #. type: itemize
  235. #: guix-git/doc/guix-cookbook.texi:138
  236. msgid "Scheme syntax boils down to a tree of expressions (or @emph{s-expression} in Lisp lingo). An expression can be a literal such as numbers and strings, or a compound which is a parenthesized list of compounds and literals. @code{#true} and @code{#false} (abbreviated @code{#t} and @code{#f}) stand for the Booleans ``true'' and ``false'', respectively."
  237. msgstr "Die Scheme-Syntax ist an sich ein Baum von Ausdrücken (Lisp-Programmierer nennen sie @emph{symbolische Ausdrücke}, kurz @emph{S-Ausdrücke} bzw.@: englisch @emph{s-expression}). Ein solcher Ausdruck kann ein Literal sein, wie z.B.@: Zahlen oder Zeichenketten, oder er kann ein zusammengesetzter Ausdruck sein, d.h.@: eine geklammerte Liste von zusammengesetzten und literalen Ausdrücken. Dabei stehen @code{#true} und @code{#false} (abgekürzt auch @code{#t} und @code{#f}) jeweils für die Booleschen Werte „wahr“ und „falsch“."
  238. #. type: itemize
  239. #: guix-git/doc/guix-cookbook.texi:140
  240. msgid "Examples of valid expressions:"
  241. msgstr "Beispiele für gültige Ausdrücke"
  242. #. type: lisp
  243. #: guix-git/doc/guix-cookbook.texi:144
  244. #, no-wrap
  245. msgid ""
  246. "\"Hello World!\"\n"
  247. "@result{} \"Hello World!\"\n"
  248. "\n"
  249. msgstr ""
  250. "\"Hallo Welt!\"\n"
  251. "@result{} \"Hallo Welt!\"\n"
  252. "\n"
  253. #. type: lisp
  254. #: guix-git/doc/guix-cookbook.texi:147
  255. #, no-wrap
  256. msgid ""
  257. "17\n"
  258. "@result{} 17\n"
  259. "\n"
  260. msgstr ""
  261. "17\n"
  262. "@result{} 17\n"
  263. "\n"
  264. #. type: lisp
  265. #: guix-git/doc/guix-cookbook.texi:151
  266. #, no-wrap
  267. msgid ""
  268. "(display (string-append \"Hello \" \"Guix\" \"\\n\"))\n"
  269. "@print{} Hello Guix!\n"
  270. "@result{} #<unspecified>\n"
  271. msgstr ""
  272. "(display (string-append \"Hallo \" \"Guix\" \"\\n\"))\n"
  273. "@print{} Hallo Guix!\n"
  274. "@result{} #<unspecified>\n"
  275. #. type: itemize
  276. #: guix-git/doc/guix-cookbook.texi:158
  277. msgid "This last example is a function call nested in another function call. When a parenthesized expression is evaluated, the first term is the function and the rest are the arguments passed to the function. Every function returns the last evaluated expression as its return value."
  278. msgstr "Das letzte Beispiel eben ist der Aufruf einer Funktion innerhalb eines anderen Funktionsaufrufs. Wenn ein geklammerter Ausdruck ausgewertet wird, ist der erste Term die Funktion und der Rest sind die Argumente, die an die Funktion übergeben werden. Jede Funktion liefert ihren zuletzt ausgewerteten Ausdruck als ihren Rückgabewert."
  279. #. type: itemize
  280. #: guix-git/doc/guix-cookbook.texi:161
  281. msgid "Anonymous functions are declared with the @code{lambda} term:"
  282. msgstr "Anonyme Funktionen werden mit dem @code{lambda}-Term deklariert:"
  283. #. type: lisp
  284. #: guix-git/doc/guix-cookbook.texi:165
  285. #, no-wrap
  286. msgid ""
  287. "(lambda (x) (* x x))\n"
  288. "@result{} #<procedure 120e348 at <unknown port>:24:0 (x)>\n"
  289. msgstr ""
  290. "(lambda (x) (* x x))\n"
  291. "@result{} #<procedure 120e348 at <unknown port>:24:0 (x)>\n"
  292. #. type: itemize
  293. #: guix-git/doc/guix-cookbook.texi:170
  294. msgid "The above procedure returns the square of its argument. Since everything is an expression, the @code{lambda} expression returns an anonymous procedure, which can in turn be applied to an argument:"
  295. msgstr "Die obige Prozedur liefert das Quadrat ihres Arguments. Weil alles ein Ausdruck ist, liefert der Ausdruck @code{lambda} eine anonyme Prozedur, die wiederum auf ein Argument angewandt werden kann:"
  296. #. type: lisp
  297. #: guix-git/doc/guix-cookbook.texi:174
  298. #, no-wrap
  299. msgid ""
  300. "((lambda (x) (* x x)) 3)\n"
  301. "@result{} 9\n"
  302. msgstr ""
  303. "((lambda (x) (* x x)) 3)\n"
  304. "@result{} 9\n"
  305. #. type: itemize
  306. #: guix-git/doc/guix-cookbook.texi:178
  307. msgid "Anything can be assigned a global name with @code{define}:"
  308. msgstr "Allem kann mit @code{define} ein globaler Name zugewiesen werden:"
  309. #. type: lisp
  310. #: guix-git/doc/guix-cookbook.texi:184
  311. #, no-wrap
  312. msgid ""
  313. "(define a 3)\n"
  314. "(define square (lambda (x) (* x x)))\n"
  315. "(square a)\n"
  316. "@result{} 9\n"
  317. msgstr ""
  318. "(define a 3)\n"
  319. "(define quadrat (lambda (x) (* x x)))\n"
  320. "(quadrat a)\n"
  321. "@result{} 9\n"
  322. #. type: itemize
  323. #: guix-git/doc/guix-cookbook.texi:188
  324. msgid "Procedures can be defined more concisely with the following syntax:"
  325. msgstr "Prozeduren können auch kürzer mit der folgenden Syntax definiert werden:"
  326. #. type: lisp
  327. #: guix-git/doc/guix-cookbook.texi:191
  328. #, no-wrap
  329. msgid "(define (square x) (* x x))\n"
  330. msgstr "(define (quadrat x) (* x x))\n"
  331. #. type: itemize
  332. #: guix-git/doc/guix-cookbook.texi:195
  333. msgid "A list structure can be created with the @code{list} procedure:"
  334. msgstr "Eine Listenstruktur kann mit der @code{list}-Prozedur erzeugt werden:"
  335. #. type: lisp
  336. #: guix-git/doc/guix-cookbook.texi:199
  337. #, no-wrap
  338. msgid ""
  339. "(list 2 a 5 7)\n"
  340. "@result{} (2 3 5 7)\n"
  341. msgstr ""
  342. "(list 2 a 5 7)\n"
  343. "@result{} (2 3 5 7)\n"
  344. #. type: itemize
  345. #: guix-git/doc/guix-cookbook.texi:206
  346. msgid "The @dfn{quote} disables evaluation of a parenthesized expression: the first term is not called over the other terms (@pxref{Expression Syntax, quote,, guile, GNU Guile Reference Manual}). Thus it effectively returns a list of terms."
  347. msgstr "Mit dem @dfn{quote}-Zeichen wird das Auswerten eines geklammerten Ausdrucks abgeschaltet: Der erste Term wird @emph{nicht} auf den anderen Termen aufgerufen (siehe @ref{Expression Syntax, quote,, guile, Referenzhandbuch zu GNU Guile}). Folglich liefert es quasi eine Liste von Termen."
  348. #. type: lisp
  349. #: guix-git/doc/guix-cookbook.texi:210
  350. #, no-wrap
  351. msgid ""
  352. "'(display (string-append \"Hello \" \"Guix\" \"\\n\"))\n"
  353. "@result{} (display (string-append \"Hello \" \"Guix\" \"\\n\"))\n"
  354. "\n"
  355. msgstr ""
  356. "'(display (string-append \"Hello \" \"Guix\" \"\\n\"))\n"
  357. "@result{} (display (string-append \"Hello \" \"Guix\" \"\\n\"))\n"
  358. "\n"
  359. #. type: lisp
  360. #: guix-git/doc/guix-cookbook.texi:213
  361. #, no-wrap
  362. msgid ""
  363. "'(2 a 5 7)\n"
  364. "@result{} (2 a 5 7)\n"
  365. msgstr ""
  366. "'(2 a 5 7)\n"
  367. "@result{} (2 a 5 7)\n"
  368. #. type: itemize
  369. #: guix-git/doc/guix-cookbook.texi:219
  370. msgid "The @dfn{quasiquote} disables evaluation of a parenthesized expression until @dfn{unquote} (a comma) re-enables it. Thus it provides us with fine-grained control over what is evaluated and what is not."
  371. msgstr "Mit einem @dfn{quasiquote}-Zeichen wird die Auswertung eines geklammerten Ausdrucks so lange abgeschaltet, bis ein @dfn{unquote} (ein Komma) sie wieder aktiviert. Wir können damit genau steuern, was ausgewertet wird und was nicht."
  372. #. type: lisp
  373. #: guix-git/doc/guix-cookbook.texi:223
  374. #, no-wrap
  375. msgid ""
  376. "`(2 a 5 7 (2 ,a 5 ,(+ a 4)))\n"
  377. "@result{} (2 a 5 7 (2 3 5 7))\n"
  378. msgstr ""
  379. "`(2 a 5 7 (2 ,a 5 ,(+ a 4)))\n"
  380. "@result{} (2 a 5 7 (2 3 5 7))\n"
  381. #. type: itemize
  382. #: guix-git/doc/guix-cookbook.texi:227
  383. msgid "Note that the above result is a list of mixed elements: numbers, symbols (here @code{a}) and the last element is a list itself."
  384. msgstr "Beachten Sie, dass obiges Ergenis eine Liste verschiedenartiger Elemente ist: Zahlen, Symbole (in diesem Fall @code{a}) und als letztes Element selbst wieder eine Liste."
  385. #. type: itemize
  386. #: guix-git/doc/guix-cookbook.texi:231
  387. msgid "Multiple variables can be named locally with @code{let} (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual}):"
  388. msgstr "Mehrere Variable können in einer lokalen Umgebung mit Bezeichnern versehen werden, indem Sie @code{let} benutzen (siehe @ref{Local Bindings,,, guile, Referenzhandbuch zu GNU Guile}):"
  389. #. type: lisp
  390. #: guix-git/doc/guix-cookbook.texi:238
  391. #, no-wrap
  392. msgid ""
  393. "(define x 10)\n"
  394. "(let ((x 2)\n"
  395. " (y 3))\n"
  396. " (list x y))\n"
  397. "@result{} (2 3)\n"
  398. "\n"
  399. msgstr ""
  400. "(define x 10)\n"
  401. "(let ((x 2)\n"
  402. " (y 3))\n"
  403. " (list x y))\n"
  404. "@result{} (2 3)\n"
  405. "\n"
  406. #. type: lisp
  407. #: guix-git/doc/guix-cookbook.texi:241
  408. #, no-wrap
  409. msgid ""
  410. "x\n"
  411. "@result{} 10\n"
  412. "\n"
  413. msgstr ""
  414. "x\n"
  415. "@result{} 10\n"
  416. "\n"
  417. #. type: lisp
  418. #: guix-git/doc/guix-cookbook.texi:244
  419. #, no-wrap
  420. msgid ""
  421. "y\n"
  422. "@error{} In procedure module-lookup: Unbound variable: y\n"
  423. msgstr ""
  424. "y\n"
  425. "@error{} In procedure module-lookup: Unbound variable: y\n"
  426. #. type: itemize
  427. #: guix-git/doc/guix-cookbook.texi:248
  428. msgid "Use @code{let*} to allow later variable declarations to refer to earlier definitions."
  429. msgstr "Benutzen Sie @code{let*}, damit spätere Variablendeklarationen auf frühere verweisen können."
  430. #. type: lisp
  431. #: guix-git/doc/guix-cookbook.texi:254
  432. #, no-wrap
  433. msgid ""
  434. "(let* ((x 2)\n"
  435. " (y (* x 3)))\n"
  436. " (list x y))\n"
  437. "@result{} (2 6)\n"
  438. msgstr ""
  439. "(let* ((x 2)\n"
  440. " (y (* x 3)))\n"
  441. " (list x y))\n"
  442. "@result{} (2 6)\n"
  443. #. type: itemize
  444. #: guix-git/doc/guix-cookbook.texi:261
  445. msgid "@dfn{Keywords} are typically used to identify the named parameters of a procedure. They are prefixed by @code{#:} (hash, colon) followed by alphanumeric characters: @code{#:like-this}. @xref{Keywords,,, guile, GNU Guile Reference Manual}."
  446. msgstr "Mit @dfn{Schlüsselwörtern} bestimmen wir normalerweise diejenigen Parameter einer Prozedur, die einen Namen haben sollen. Ihnen wird @code{#:} (Doppelkreuz und Doppelpunkt) vorangestellt, gefolgt von alphanumerischen Zeichen: @code{#:etwa-so}. Siehe @ref{Keywords,,, guile, Referenzhandbuch zu GNU Guile}."
  447. #. type: itemize
  448. #: guix-git/doc/guix-cookbook.texi:266
  449. msgid "The percentage @code{%} is typically used for read-only global variables in the build stage. Note that it is merely a convention, like @code{_} in C. Scheme treats @code{%} exactly the same as any other letter."
  450. msgstr "Das Prozentzeichen @code{%} wird in der Regel für globale Variable auf Erstellungsebene benutzt, auf die nur lesend zugegriffen werden soll. Beachten Sie, dass es sich dabei nur um eine Konvention handelt, ähnlich wie @code{_} in C@. Scheme behandelt @code{%} genau wie jedes andere Zeichen."
  451. #. type: itemize
  452. #: guix-git/doc/guix-cookbook.texi:270
  453. msgid "Modules are created with @code{define-module} (@pxref{Creating Guile Modules,,, guile, GNU Guile Reference Manual}). For instance"
  454. msgstr "Module werden mit Hilfe von @code{define-module} erzeugt (siehe @ref{Creating Guile Modules,,, guile, Referenzhandbuch zu GNU Guile}). Zum Beispiel definiert man mit"
  455. #. type: lisp
  456. #: guix-git/doc/guix-cookbook.texi:276
  457. #, no-wrap
  458. msgid ""
  459. "(define-module (guix build-system ruby)\n"
  460. " #:use-module (guix store)\n"
  461. " #:export (ruby-build\n"
  462. " ruby-build-system))\n"
  463. msgstr ""
  464. "(define-module (guix build-system ruby)\n"
  465. " #:use-module (guix store)\n"
  466. " #:export (ruby-build\n"
  467. " ruby-build-system))\n"
  468. #. type: itemize
  469. #: guix-git/doc/guix-cookbook.texi:282
  470. msgid "defines the module @code{guix build-system ruby} which must be located in @file{guix/build-system/ruby.scm} somewhere in the Guile load path. It depends on the @code{(guix store)} module and it exports two variables, @code{ruby-build} and @code{ruby-build-system}."
  471. msgstr "das Modul @code{guix build-system ruby}, das sich unter dem Pfad @file{guix/build-system/ruby.scm} innerhalb irgendeines Verzeichnisses im Guile-Ladepfad befinden muss. Es hat eine Abhängigkeit auf das Modul @code{(guix store)} und exportiert zwei seiner Variablen, @code{ruby-build} und @code{ruby-build-system}."
  472. #. type: Plain text
  473. #: guix-git/doc/guix-cookbook.texi:287
  474. msgid "For a more detailed introduction, check out @uref{http://www.troubleshooters.com/codecorn/scheme_guile/hello.htm, Scheme at a Glance}, by Steve Litt."
  475. msgstr "Für eine detailliertere Einführung können Sie einen Blick auf Steve Litts @uref{http://www.troubleshooters.com/codecorn/scheme_guile/hello.htm, Scheme at a Glance} werfen."
  476. #. type: Plain text
  477. #: guix-git/doc/guix-cookbook.texi:299
  478. msgid "One of the reference Scheme books is the seminal ``Structure and Interpretation of Computer Programs'', by Harold Abelson and Gerald Jay Sussman, with Julie Sussman. You'll find a @uref{https://mitpress.mit.edu/sites/default/files/sicp/index.html, free copy online}, together with @uref{https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-001-structure-and-interpretation-of-computer-programs-spring-2005/video-lectures/, videos of the lectures by the authors}. The book is available in Texinfo format as the @code{sicp} Guix package. Go ahead, run @code{guix install sicp} and start reading with @code{info sicp} (@pxref{,,, sicp, Structure and Interpretation of Computer Programs}). An @uref{https://sarabander.github.io/sicp/, unofficial ebook is also available}."
  479. msgstr "Eines der Referenzbücher zu Scheme ist das einflussreiche „Structure and Interpretation of Computer Programs“, von Harold Abelson und Gerald Jay Sussman, mit Julie Sussman. Eine deutsche Übersetzung „Struktur und Interpretation von Computerprogrammen“ hat Susanne Daniels-Herold verfasst. Vom englischen Original finden Sie eine @uref{https://mitpress.mit.edu/sites/default/files/sicp/index.html, kostenlose Ausgabe online} zusammen mit @uref{https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-001-structure-and-interpretation-of-computer-programs-spring-2005/video-lectures/, Videos der von den Autoren gehaltenen Vorlesungen}. Das Buch können Sie im Texinfo-Format über das @code{sicp}-Guix-Paket beziehen. Probieren Sie es aus: Führen Sie @code{guix install sicp} aus und fangen Sie mit dem Lesen an, indem Sie @code{info sicp} eintippen (siehe @ref{,,, sicp, Structure and Interpretation of Computer Programs}). Es gibt auch ein @uref{https://sarabander.github.io/sicp/, inoffizielles E-Book}."
  480. #. type: Plain text
  481. #: guix-git/doc/guix-cookbook.texi:302
  482. msgid "You'll find more books, tutorials and other resources at @url{https://schemers.org/}."
  483. msgstr "Sie finden noch mehr Bücher, Anleitungen und andere Ressourcen auf @url{https://schemers.org/}."
  484. #. type: cindex
  485. #: guix-git/doc/guix-cookbook.texi:308
  486. #, no-wrap
  487. msgid "packaging"
  488. msgstr "Pakete schreiben"
  489. #. type: Plain text
  490. #: guix-git/doc/guix-cookbook.texi:314
  491. msgid "This chapter is dedicated to teaching you how to add packages to the collection of packages that come with GNU Guix. This involves writing package definitions in Guile Scheme, organizing them in package modules, and building them."
  492. msgstr "In diesem Kapitel bringen wir Ihnen bei, wie Sie Pakete zur mit GNU Guix ausgelieferten Paketsammlung beitragen. Dazu gehört, Paketdefinitionen in Guile Scheme zu schreiben, sie in Paketmodulen zu organisieren und sie zu erstellen."
  493. #. type: menuentry
  494. #: guix-git/doc/guix-cookbook.texi:317
  495. msgid "A tutorial on how to add packages to Guix."
  496. msgstr "Eine Anleitung, wie Sie Pakete zu Guix hinzufügen."
  497. #. type: Plain text
  498. #: guix-git/doc/guix-cookbook.texi:328
  499. msgid "GNU Guix stands out as the @emph{hackable} package manager, mostly because it uses @uref{https://www.gnu.org/software/guile/, GNU Guile}, a powerful high-level programming language, one of the @uref{https://en.wikipedia.org/wiki/Scheme_%28programming_language%29, Scheme} dialects from the @uref{https://en.wikipedia.org/wiki/Lisp_%28programming_language%29, Lisp family}."
  500. msgstr "GNU Guix zeichnet sich in erster Linie deswegen als das @emph{hackbare} Paketverwaltungswerkzeug aus, weil es mit @uref{https://www.gnu.org/software/guile/, GNU Guile} arbeitet, einer mächtigen, hochsprachlichen Programmiersprache, die einen der Dialekte von @uref{https://de.wikipedia.org/wiki/Scheme, Scheme} darstellt. Scheme wiederum gehört zur @uref{https://de.wikipedia.org/wiki/Lisp, Lisp-Familie von Programmiersprachen}."
  501. #. type: Plain text
  502. #: guix-git/doc/guix-cookbook.texi:332
  503. msgid "Package definitions are also written in Scheme, which empowers Guix in some very unique ways, unlike most other package managers that use shell scripts or simple languages."
  504. msgstr "Paketdefinitionen werden ebenso in Scheme geschrieben, wodurch Guix auf sehr einzigartige Weise mächtiger wird als die meisten anderen Paketverwaltungssysteme, die Shell-Skripte oder einfache Sprachen benutzen."
  505. #. type: itemize
  506. #: guix-git/doc/guix-cookbook.texi:337
  507. msgid "Use functions, structures, macros and all of Scheme expressiveness for your package definitions."
  508. msgstr "Sie können sich Funktionen, Strukturen, Makros und all die Ausdrucksstärke von Scheme für Ihre Paketdefinitionen zu Nutze machen."
  509. #. type: itemize
  510. #: guix-git/doc/guix-cookbook.texi:341
  511. msgid "Inheritance makes it easy to customize a package by inheriting from it and modifying only what is needed."
  512. msgstr "Durch Vererbung können Sie ohne viel Aufwand ein Paket anpassen, indem Sie von ihm erben lassen und nur das Nötige abändern."
  513. #. type: itemize
  514. #: guix-git/doc/guix-cookbook.texi:351
  515. msgid "Batch processing: the whole package collection can be parsed, filtered and processed. Building a headless server with all graphical interfaces stripped out? It's possible. Want to rebuild everything from source using specific compiler optimization flags? Pass the @code{#:make-flags \"...\"} argument to the list of packages. It wouldn't be a stretch to think @uref{https://wiki.gentoo.org/wiki/USE_flag, Gentoo USE flags} here, but this goes even further: the changes don't have to be thought out beforehand by the packager, they can be @emph{programmed} by the user!"
  516. msgstr "Stapelverarbeitung („batch mode“) wird möglich; die ganze Paketsammlung kann analysiert, gefiltert und verarbeitet werden. Versuchen Sie, ein Serversystem ohne Bildschirm („headless“) auch tatsächlich von allen Grafikschnittstellen zu befreien? Das ist möglich. Möchten Sie alles von Neuem aus seinem Quellcode erstellen, aber mit eingeschalteten besonderen Compileroptimierungen? Übergeben Sie einfach das passende @code{#:make-flags \"...\"}-Argument an die Paketliste. Es wäre nicht übertrieben, hier an die @uref{https://wiki.gentoo.org/wiki/USE_flag, USE-Optionen von Gentoo} zu denken, aber das hier übertrifft sie: Der Paketautor muss vorher gar nicht darüber nachgedacht haben, der Nutzer kann sie selbst @emph{programmieren}!"
  517. #. type: Plain text
  518. #: guix-git/doc/guix-cookbook.texi:357
  519. msgid "The following tutorial covers all the basics around package creation with Guix. It does not assume much knowledge of the Guix system nor of the Lisp language. The reader is only expected to be familiar with the command line and to have some basic programming knowledge."
  520. msgstr "Die folgende Anleitung erklärt alles Grundlegende über das Schreiben von Paketen mit Guix. Dabei setzen wir kein großes Wissen über das Guix-System oder die Lisp-Sprache voraus. Vom Leser wird nur erwartet, dass er mit der Befehlszeile vertraut ist und über grundlegende Programmierkenntnisse verfügt."
  521. #. type: subsection
  522. #: guix-git/doc/guix-cookbook.texi:358 guix-git/doc/guix-cookbook.texi:359
  523. #, no-wrap
  524. msgid "A ``Hello World'' package"
  525. msgstr "Ein Hallo-Welt-Paket"
  526. #. type: Plain text
  527. #: guix-git/doc/guix-cookbook.texi:364
  528. msgid "The ``Defining Packages'' section of the manual introduces the basics of Guix packaging (@pxref{Defining Packages,,, guix, GNU Guix Reference Manual}). In the following section, we will partly go over those basics again."
  529. msgstr "Der Abschnitt „Pakete definieren“ im Handbuch führt in die Grundlagen des Paketschreibens für Guix ein (siehe @ref{Pakete definieren,,, guix.de, Referenzhandbuch zu GNU Guix}). Im folgenden Abschnitt werden wir diese Grundlagen teilweise rekapitulieren."
  530. #. type: Plain text
  531. #: guix-git/doc/guix-cookbook.texi:370
  532. msgid "GNU@tie{}Hello is a dummy project that serves as an idiomatic example for packaging. It uses the GNU build system (@code{./configure && make && make install}). Guix already provides a package definition which is a perfect example to start with. You can look up its declaration with @code{guix edit hello} from the command line. Let's see how it looks:"
  533. msgstr "GNU@tie{}Hello ist ein Projekt, das uns als Stellvertreter für „richtige“ Projekte und allgemeines Beispiel für das Schreiben von Paketen dient. Es verwendet das GNU-Erstellungssystem (@code{./configure && make && make install}). Guix stellt uns schon eine Paketdefinition zur Verfügung, die uns einen perfekten Ausgangspunkt bietet. Sie können sich ihre Deklaration anschauen, indem Sie @code{guix edit hello} von der Befehlszeile ausführen. Schauen wir sie uns an:"
  534. #. type: lisp
  535. #: guix-git/doc/guix-cookbook.texi:391
  536. #, no-wrap
  537. msgid ""
  538. "(define-public hello\n"
  539. " (package\n"
  540. " (name \"hello\")\n"
  541. " (version \"2.10\")\n"
  542. " (source (origin\n"
  543. " (method url-fetch)\n"
  544. " (uri (string-append \"mirror://gnu/hello/hello-\" version\n"
  545. " \".tar.gz\"))\n"
  546. " (sha256\n"
  547. " (base32\n"
  548. " \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n"
  549. " (build-system gnu-build-system)\n"
  550. " (synopsis \"Hello, GNU world: An example GNU package\")\n"
  551. " (description\n"
  552. " \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n"
  553. "serves as an example of standard GNU coding practices. As such, it supports\n"
  554. "command-line arguments, multiple languages, and so on.\")\n"
  555. " (home-page \"https://www.gnu.org/software/hello/\")\n"
  556. " (license gpl3+)))\n"
  557. msgstr ""
  558. "(define-public hello\n"
  559. " (package\n"
  560. " (name \"hello\")\n"
  561. " (version \"2.10\")\n"
  562. " (source (origin\n"
  563. " (method url-fetch)\n"
  564. " (uri (string-append \"mirror://gnu/hello/hello-\" version\n"
  565. " \".tar.gz\"))\n"
  566. " (sha256\n"
  567. " (base32\n"
  568. " \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n"
  569. " (build-system gnu-build-system)\n"
  570. " (synopsis \"Hello, GNU world: An example GNU package\")\n"
  571. " (description\n"
  572. " \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n"
  573. "serves as an example of standard GNU coding practices. As such, it supports\n"
  574. "command-line arguments, multiple languages, and so on.\")\n"
  575. " (home-page \"https://www.gnu.org/software/hello/\")\n"
  576. " (license gpl3+)))\n"
  577. #. type: Plain text
  578. #: guix-git/doc/guix-cookbook.texi:395
  579. msgid "As you can see, most of it is rather straightforward. But let's review the fields together:"
  580. msgstr "Wie Sie sehen können, ist das meiste klar strukturiert. Aber sehen wir uns die Felder zusammen an:"
  581. #. type: item
  582. #: guix-git/doc/guix-cookbook.texi:397
  583. #, no-wrap
  584. msgid "name"
  585. msgstr "name"
  586. #. type: table
  587. #: guix-git/doc/guix-cookbook.texi:400
  588. msgid "The project name. Using Scheme conventions, we prefer to keep it lower case, without underscore and using dash-separated words."
  589. msgstr "Der Name des Projekts. Wir halten uns an die Konventionen von Scheme und bevorzugen deshalb Kleinschreibung ohne Unterstriche, sondern mit Bindestrichen zwischen den Wörtern."
  590. #. type: item
  591. #: guix-git/doc/guix-cookbook.texi:401
  592. #, no-wrap
  593. msgid "source"
  594. msgstr "source"
  595. #. type: table
  596. #: guix-git/doc/guix-cookbook.texi:404
  597. msgid "This field contains a description of the source code origin. The @code{origin} record contains these fields:"
  598. msgstr "Dieses Feld enthält eine Beschreibung, was der Ursprung des Quellcodes ist. Das @code{origin}-Verbundsobjekt enthält diese Felder:"
  599. #. type: item
  600. #: guix-git/doc/guix-cookbook.texi:406
  601. #, no-wrap
  602. msgid "The method, here @code{url-fetch} to download via HTTP/FTP, but other methods"
  603. msgstr "Die Methode. Wir verwenden hier @code{url-fetch}, um über HTTP/FTP herunterzuladen,"
  604. #. type: enumerate
  605. #: guix-git/doc/guix-cookbook.texi:408
  606. msgid "exist, such as @code{git-fetch} for Git repositories."
  607. msgstr "aber es gibt auch andere Methoden wie @code{git-fetch} für Git-Repositorys."
  608. #. type: item
  609. #: guix-git/doc/guix-cookbook.texi:408
  610. #, no-wrap
  611. msgid "The URI, which is typically some @code{https://} location for @code{url-fetch}. Here"
  612. msgstr "Die URI, welche bei @code{url-fetch} normalerweise eine Ortsangabe mit @code{https://} ist."
  613. #. type: enumerate
  614. #: guix-git/doc/guix-cookbook.texi:411
  615. msgid "the special `mirror://gnu` refers to a set of well known locations, all of which can be used by Guix to fetch the source, should some of them fail."
  616. msgstr "In diesem Fall verweist die besondere URI ‚mirror://gnu‘ auf eine von mehreren wohlbekannten Ortsangaben, von denen Guix jede durchprobieren kann, um den Quellcode herunterzuladen, wenn es bei manchen davon nicht klappt."
  617. #. type: item
  618. #: guix-git/doc/guix-cookbook.texi:411
  619. #, no-wrap
  620. msgid "The @code{sha256} checksum of the requested file. This is essential to ensure"
  621. msgstr "Die @code{sha256}-Prüfsumme der angefragten Datei."
  622. #. type: enumerate
  623. #: guix-git/doc/guix-cookbook.texi:414
  624. msgid "the source is not corrupted. Note that Guix works with base32 strings, hence the call to the @code{base32} function."
  625. msgstr "Sie ist notwendig, damit sichergestellt werden kann, dass der Quellcode nicht beschädigt ist. Beachten Sie, dass Guix mit Zeichenketten in Base32-Kodierung arbeitet, weshalb wir die @code{base32}-Funktion aufrufen."
  626. #. type: item
  627. #: guix-git/doc/guix-cookbook.texi:416
  628. #, no-wrap
  629. msgid "build-system"
  630. msgstr "build-system"
  631. #. type: table
  632. #: guix-git/doc/guix-cookbook.texi:425
  633. msgid "This is where the power of abstraction provided by the Scheme language really shines: in this case, the @code{gnu-build-system} abstracts away the famous @code{./configure && make && make install} shell invocations. Other build systems include the @code{trivial-build-system} which does not do anything and requires from the packager to program all the build steps, the @code{python-build-system}, the @code{emacs-build-system}, and many more (@pxref{Build Systems,,, guix, GNU Guix Reference Manual})."
  634. msgstr "Hier glänzt Schemes Fähigkeit zur Abstraktion: In diesem Fall abstrahiert @code{gnu-build-system} die berühmten Schritte @code{./configure && make && make install}, die sonst in der Shell aufgerufen würden. Zu den anderen Erstellungssystemen gehören das @code{trivial-build-system}, das nichts tut und dem Paketautoren das Schreiben sämtlicher Erstellungsschritte abverlangt, das @code{python-build-system}, das @code{emacs-build-system}, und viele mehr (siehe @ref{Erstellungssysteme,,, guix.de, Referenzhandbuch zu GNU Guix})."
  635. #. type: item
  636. #: guix-git/doc/guix-cookbook.texi:426
  637. #, no-wrap
  638. msgid "synopsis"
  639. msgstr "synopsis"
  640. #. type: table
  641. #: guix-git/doc/guix-cookbook.texi:429
  642. msgid "It should be a concise summary of what the package does. For many packages a tagline from the project's home page can be used as the synopsis."
  643. msgstr "Die Zusammenfassung. Sie sollte eine knappe Beschreibung sein, was das Paket tut. Für viele Pakete findet sich auf der Homepage ein Einzeiler, der als Zusammenfassung benutzt werden kann."
  644. #. type: item
  645. #: guix-git/doc/guix-cookbook.texi:430
  646. #, no-wrap
  647. msgid "description"
  648. msgstr "description"
  649. #. type: table
  650. #: guix-git/doc/guix-cookbook.texi:433
  651. msgid "Same as for the synopsis, it's fine to re-use the project description from the homepage. Note that Guix uses Texinfo syntax."
  652. msgstr "Genau wie bei der Zusammenfassung ist es in Ordnung, die Beschreibung des Projekts für das Paket wiederzuverwenden. Beachten Sie, dass Guix dafür Texinfo-Syntax verlangt."
  653. #. type: item
  654. #: guix-git/doc/guix-cookbook.texi:434
  655. #, no-wrap
  656. msgid "home-page"
  657. msgstr "home-page"
  658. #. type: table
  659. #: guix-git/doc/guix-cookbook.texi:436
  660. msgid "Use HTTPS if available."
  661. msgstr "Hier soll möglichst HTTPS benutzt werden."
  662. #. type: item
  663. #: guix-git/doc/guix-cookbook.texi:437
  664. #, no-wrap
  665. msgid "license"
  666. msgstr "license"
  667. #. type: table
  668. #: guix-git/doc/guix-cookbook.texi:440
  669. msgid "See @code{guix/licenses.scm} in the project source for a full list of available licenses."
  670. msgstr "Siehe die vollständige Liste verfügbarer Lizenzen in @code{guix/licenses.scm} im Guix-Quellcode."
  671. #. type: Plain text
  672. #: guix-git/doc/guix-cookbook.texi:444
  673. msgid "Time to build our first package! Nothing fancy here for now: we will stick to a dummy @code{my-hello}, a copy of the above declaration."
  674. msgstr "Es wird Zeit, unser erstes Paket zu schreiben! Aber noch nichts tolles, wir bleiben bei einem Paket @code{my-hello} stelltvertretend für „richtige“ Software; es ist eine Kopie obiger Deklaration."
  675. #. type: Plain text
  676. #: guix-git/doc/guix-cookbook.texi:448
  677. msgid "As with the ritualistic ``Hello World'' taught with most programming languages, this will possibly be the most ``manual'' approach. We will work out an ideal setup later; for now we will go the simplest route."
  678. msgstr "Genau wie beim Ritual, Neulinge in Programmiersprachen „Hallo Welt“ schreiben zu lassen, fangen wir mit der vielleicht „arbeitsintensivsten“ Herangehensweise ans Paketeschreiben an. Wir kümmern uns später darum, wie man am besten an Paketen arbeitet; erst einmal nehmen wir den einfachsten Weg."
  679. #. type: Plain text
  680. #: guix-git/doc/guix-cookbook.texi:450
  681. msgid "Save the following to a file @file{my-hello.scm}."
  682. msgstr "Speichern Sie den folgenden Code in eine Datei @file{my-hello.scm}."
  683. #. type: lisp
  684. #: guix-git/doc/guix-cookbook.texi:456
  685. #, no-wrap
  686. msgid ""
  687. "(use-modules (guix packages)\n"
  688. " (guix download)\n"
  689. " (guix build-system gnu)\n"
  690. " (guix licenses))\n"
  691. "\n"
  692. msgstr ""
  693. "(use-modules (guix packages)\n"
  694. " (guix download)\n"
  695. " (guix build-system gnu)\n"
  696. " (guix licenses))\n"
  697. "\n"
  698. #. type: lisp
  699. #: guix-git/doc/guix-cookbook.texi:475
  700. #, no-wrap
  701. msgid ""
  702. "(package\n"
  703. " (name \"my-hello\")\n"
  704. " (version \"2.10\")\n"
  705. " (source (origin\n"
  706. " (method url-fetch)\n"
  707. " (uri (string-append \"mirror://gnu/hello/hello-\" version\n"
  708. " \".tar.gz\"))\n"
  709. " (sha256\n"
  710. " (base32\n"
  711. " \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n"
  712. " (build-system gnu-build-system)\n"
  713. " (synopsis \"Hello, Guix world: An example custom Guix package\")\n"
  714. " (description\n"
  715. " \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n"
  716. "serves as an example of standard GNU coding practices. As such, it supports\n"
  717. "command-line arguments, multiple languages, and so on.\")\n"
  718. " (home-page \"https://www.gnu.org/software/hello/\")\n"
  719. " (license gpl3+))\n"
  720. msgstr ""
  721. "(package\n"
  722. " (name \"my-hello\")\n"
  723. " (version \"2.10\")\n"
  724. " (source (origin\n"
  725. " (method url-fetch)\n"
  726. " (uri (string-append \"mirror://gnu/hello/hello-\" version\n"
  727. " \".tar.gz\"))\n"
  728. " (sha256\n"
  729. " (base32\n"
  730. " \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n"
  731. " (build-system gnu-build-system)\n"
  732. " (synopsis \"Hello, Guix world: An example custom Guix package\")\n"
  733. " (description\n"
  734. " \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n"
  735. "serves as an example of standard GNU coding practices. As such, it supports\n"
  736. "command-line arguments, multiple languages, and so on.\")\n"
  737. " (home-page \"https://www.gnu.org/software/hello/\")\n"
  738. " (license gpl3+))\n"
  739. #. type: Plain text
  740. #: guix-git/doc/guix-cookbook.texi:478
  741. msgid "We will explain the extra code in a moment."
  742. msgstr "Wir erklären den zusätzlichen Code in Kürze."
  743. #. type: Plain text
  744. #: guix-git/doc/guix-cookbook.texi:485
  745. msgid "Feel free to play with the different values of the various fields. If you change the source, you'll need to update the checksum. Indeed, Guix refuses to build anything if the given checksum does not match the computed checksum of the source code. To obtain the correct checksum of the package declaration, we need to download the source, compute the sha256 checksum and convert it to base32."
  746. msgstr "Spielen Sie ruhig mit unterschiedlichen Werten für die verschiedenen Felder herum. Wenn Sie den Quellort (die „source“) ändern, müssen Sie die Prüfsumme aktualisieren. Tatsächlich weigert sich Guix, etwas zu erstellen, wenn die angegebene Prüfsumme nicht zu der berechneten Prüfsumme des Quellcodes passt. Um die richtige Prüfsumme für die Paketdeklaration zu finden, müssen wir den Quellcode herunterladen, die SHA256-Summe davon berechnen und sie in Base32 umwandeln."
  747. #. type: Plain text
  748. #: guix-git/doc/guix-cookbook.texi:488
  749. msgid "Thankfully, Guix can automate this task for us; all we need is to provide the URI:"
  750. msgstr "Glücklicherweise kann Guix diese Aufgabe automatisieren; wir müssen lediglich die URI übergeben."
  751. #. type: example
  752. #: guix-git/doc/guix-cookbook.texi:492
  753. #, no-wrap
  754. msgid ""
  755. "$ guix download mirror://gnu/hello/hello-2.10.tar.gz\n"
  756. "\n"
  757. msgstr ""
  758. "$ guix download mirror://gnu/hello/hello-2.10.tar.gz\n"
  759. "\n"
  760. #. type: example
  761. #: guix-git/doc/guix-cookbook.texi:499
  762. #, no-wrap
  763. msgid ""
  764. "Starting download of /tmp/guix-file.JLYgL7\n"
  765. "From https://ftpmirror.gnu.org/gnu/hello/hello-2.10.tar.gz...\n"
  766. "following redirection to `https://mirror.ibcp.fr/pub/gnu/hello/hello-2.10.tar.gz'...\n"
  767. " …10.tar.gz 709KiB 2.5MiB/s 00:00 [##################] 100.0%\n"
  768. "/gnu/store/hbdalsf5lpf01x4dcknwx6xbn6n5km6k-hello-2.10.tar.gz\n"
  769. "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\n"
  770. msgstr ""
  771. "Starting download of /tmp/guix-file.JLYgL7\n"
  772. "From https://ftpmirror.gnu.org/gnu/hello/hello-2.10.tar.gz...\n"
  773. "following redirection to `https://mirror.ibcp.fr/pub/gnu/hello/hello-2.10.tar.gz'...\n"
  774. " …10.tar.gz 709KiB 2.5MiB/s 00:00 [##################] 100.0%\n"
  775. "/gnu/store/hbdalsf5lpf01x4dcknwx6xbn6n5km6k-hello-2.10.tar.gz\n"
  776. "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\n"
  777. #. type: Plain text
  778. #: guix-git/doc/guix-cookbook.texi:504
  779. msgid "In this specific case the output tells us which mirror was chosen. If the result of the above command is not the same as in the above snippet, update your @code{my-hello} declaration accordingly."
  780. msgstr "In diesem speziellen Fall sagt uns die Ausgabe, welcher Spiegelserver ausgewählt wurde. Wenn das Ergebnis des obigen Befehls nicht dasselbe ist wie im Codeschnipsel, dann aktualisieren Sie Ihre @code{my-hello}-Deklaration entsprechend."
  781. #. type: Plain text
  782. #: guix-git/doc/guix-cookbook.texi:508
  783. msgid "Note that GNU package tarballs come with an OpenPGP signature, so you should definitely check the signature of this tarball with `gpg` to authenticate it before going further:"
  784. msgstr "Beachten Sie, dass Tarball-Archive von GNU-Paketen mit einer OpenPGP-Signatur ausgeliefert werden, deshalb sollten Sie mit Sicherheit die Signatur dieses Tarballs mit „gpg“ überprüfen, um ihn zu authentifizieren, bevor Sie weitermachen."
  785. #. type: example
  786. #: guix-git/doc/guix-cookbook.texi:512
  787. #, no-wrap
  788. msgid ""
  789. "$ guix download mirror://gnu/hello/hello-2.10.tar.gz.sig\n"
  790. "\n"
  791. msgstr ""
  792. "$ guix download mirror://gnu/hello/hello-2.10.tar.gz.sig\n"
  793. "\n"
  794. #. type: example
  795. #: guix-git/doc/guix-cookbook.texi:527
  796. #, no-wrap
  797. msgid ""
  798. "Starting download of /tmp/guix-file.03tFfb\n"
  799. "From https://ftpmirror.gnu.org/gnu/hello/hello-2.10.tar.gz.sig...\n"
  800. "following redirection to `https://ftp.igh.cnrs.fr/pub/gnu/hello/hello-2.10.tar.gz.sig'...\n"
  801. " ….tar.gz.sig 819B 1.2MiB/s 00:00 [##################] 100.0%\n"
  802. "/gnu/store/rzs8wba9ka7grrmgcpfyxvs58mly0sx6-hello-2.10.tar.gz.sig\n"
  803. "0q0v86n3y38z17rl146gdakw9xc4mcscpk8dscs412j22glrv9jf\n"
  804. "$ gpg --verify /gnu/store/rzs8wba9ka7grrmgcpfyxvs58mly0sx6-hello-2.10.tar.gz.sig /gnu/store/hbdalsf5lpf01x4dcknwx6xbn6n5km6k-hello-2.10.tar.gz\n"
  805. "gpg: Signature made Sun 16 Nov 2014 01:08:37 PM CET\n"
  806. "gpg: using RSA key A9553245FDE9B739\n"
  807. "gpg: Good signature from \"Sami Kerola <kerolasa@@iki.fi>\" [unknown]\n"
  808. "gpg: aka \"Sami Kerola (http://www.iki.fi/kerolasa/) <kerolasa@@iki.fi>\" [unknown]\n"
  809. "gpg: WARNING: This key is not certified with a trusted signature!\n"
  810. "gpg: There is no indication that the signature belongs to the owner.\n"
  811. "Primary key fingerprint: 8ED3 96E3 7E38 D471 A005 30D3 A955 3245 FDE9 B739\n"
  812. msgstr ""
  813. "Starting download of /tmp/guix-file.03tFfb\n"
  814. "From https://ftpmirror.gnu.org/gnu/hello/hello-2.10.tar.gz.sig...\n"
  815. "following redirection to `https://ftp.igh.cnrs.fr/pub/gnu/hello/hello-2.10.tar.gz.sig'...\n"
  816. " ….tar.gz.sig 819B 1.2MiB/s 00:00 [##################] 100.0%\n"
  817. "/gnu/store/rzs8wba9ka7grrmgcpfyxvs58mly0sx6-hello-2.10.tar.gz.sig\n"
  818. "0q0v86n3y38z17rl146gdakw9xc4mcscpk8dscs412j22glrv9jf\n"
  819. "$ gpg --verify /gnu/store/rzs8wba9ka7grrmgcpfyxvs58mly0sx6-hello-2.10.tar.gz.sig /gnu/store/hbdalsf5lpf01x4dcknwx6xbn6n5km6k-hello-2.10.tar.gz\n"
  820. "gpg: Signatur vom So 16 Nov 2014 13:08:37 CET\n"
  821. "gpg: mittels RSA-Schlüssel A9553245FDE9B739\n"
  822. "gpg: Korrekte Signatur von \"Sami Kerola (https://www.iki.fi/kerolasa/) <kerolasa@@iki.fi>\" [unbekannt]\n"
  823. "gpg: WARNUNG: Dieser Schlüssel trägt keine vertrauenswürdige Signatur!\n"
  824. "gpg: Es gibt keinen Hinweis, daß die Signatur wirklich dem vorgeblichen Besitzer gehört.\n"
  825. "Haupt-Fingerabdruck = 8ED3 96E3 7E38 D471 A005 30D3 A955 3245 FDE9 B739\n"
  826. #. type: Plain text
  827. #: guix-git/doc/guix-cookbook.texi:530
  828. msgid "You can then happily run"
  829. msgstr "Sie können dann unbesorgt das hier ausführen:"
  830. #. type: example
  831. #: guix-git/doc/guix-cookbook.texi:534
  832. #, no-wrap
  833. msgid "$ guix package --install-from-file=my-hello.scm\n"
  834. msgstr "$ guix package --install-from-file=my-hello.scm\n"
  835. #. type: Plain text
  836. #: guix-git/doc/guix-cookbook.texi:537
  837. msgid "You should now have @code{my-hello} in your profile!"
  838. msgstr "Nun sollte @code{my-hello} in Ihrem Profil enthalten sein!"
  839. #. type: example
  840. #: guix-git/doc/guix-cookbook.texi:543
  841. #, no-wrap
  842. msgid ""
  843. "$ guix package --list-installed=my-hello\n"
  844. "my-hello\t2.10\tout\n"
  845. "/gnu/store/f1db2mfm8syb8qvc357c53slbvf1g9m9-my-hello-2.10\n"
  846. msgstr ""
  847. "$ guix package --list-installed=my-hello\n"
  848. "my-hello\t2.10\tout\n"
  849. "/gnu/store/f1db2mfm8syb8qvc357c53slbvf1g9m9-my-hello-2.10\n"
  850. #. type: Plain text
  851. #: guix-git/doc/guix-cookbook.texi:548
  852. msgid "We've gone as far as we could without any knowledge of Scheme. Before moving on to more complex packages, now is the right time to brush up on your Scheme knowledge. @pxref{A Scheme Crash Course} to get up to speed."
  853. msgstr "Wir sind so weit gekommen, wie es ohne Scheme-Kenntnisse möglich ist. Bevor wir mit komplexeren Paketen weitermachen, ist jetzt der Zeitpunkt gekommen, Ihr Wissen über Scheme zu entstauben. Siehe @ref{Ein Schnellkurs in Scheme} für eine Auffrischung."
  854. #. type: subsection
  855. #: guix-git/doc/guix-cookbook.texi:549 guix-git/doc/guix-cookbook.texi:550
  856. #, no-wrap
  857. msgid "Setup"
  858. msgstr "Herangehensweisen"
  859. #. type: Plain text
  860. #: guix-git/doc/guix-cookbook.texi:555
  861. msgid "In the rest of this chapter we will rely on some basic Scheme programming knowledge. Now let's detail the different possible setups for working on Guix packages."
  862. msgstr "Im Rest dieses Kapitels setzen wir ein paar grundlegende Scheme-Programmierkenntnisse voraus. Wir wollen uns nun verschiedene mögliche Herangehensweisen anschauen, wie man an Guix-Paketen arbeiten kann."
  863. #. type: Plain text
  864. #: guix-git/doc/guix-cookbook.texi:557
  865. msgid "There are several ways to set up a Guix packaging environment."
  866. msgstr "Es gibt mehrere Arten, eine Umgebung zum Paketeschreiben aufzusetzen."
  867. #. type: Plain text
  868. #: guix-git/doc/guix-cookbook.texi:560
  869. msgid "We recommend you work directly on the Guix source checkout since it makes it easier for everyone to contribute to the project."
  870. msgstr "Unsere Empfehlung ist, dass Sie direkt am Checkout des Guix-Quellcodes arbeiten, weil es dann für alle einfacher ist, zu Guix beizutragen."
  871. #. type: Plain text
  872. #: guix-git/doc/guix-cookbook.texi:562
  873. msgid "But first, let's look at other possibilities."
  874. msgstr "Werfen wir aber zunächst einen Blick auf andere Möglichkeiten."
  875. #. type: subsubsection
  876. #: guix-git/doc/guix-cookbook.texi:563 guix-git/doc/guix-cookbook.texi:564
  877. #, no-wrap
  878. msgid "Local file"
  879. msgstr "Lokale Datei"
  880. #. type: Plain text
  881. #: guix-git/doc/guix-cookbook.texi:569
  882. msgid "This is what we previously did with @samp{my-hello}. With the Scheme basics we've covered, we are now able to explain the leading chunks. As stated in @code{guix package --help}:"
  883. msgstr "Diese Methode haben wir zuletzt für @samp{my-hello} benutzt. Jetzt nachdem wir uns mit den Scheme-Grundlagen befasst haben, können wir uns den Code am Anfang erklären. @code{guix package --help} sagt uns:"
  884. #. type: example
  885. #: guix-git/doc/guix-cookbook.texi:574
  886. #, no-wrap
  887. msgid ""
  888. " -f, --install-from-file=FILE\n"
  889. " install the package that the code within FILE\n"
  890. " evaluates to\n"
  891. msgstr ""
  892. " -f, --install-from-file=DATEI\n"
  893. " das Paket installieren, zu dem der Code in der DATEI\n"
  894. " ausgewertet wird\n"
  895. #. type: Plain text
  896. #: guix-git/doc/guix-cookbook.texi:578
  897. msgid "Thus the last expression @emph{must} return a package, which is the case in our earlier example."
  898. msgstr "Daher @emph{muss} der letzte Ausdruck ein Paket liefern, was im vorherigen Beispiel der Fall ist."
  899. #. type: Plain text
  900. #: guix-git/doc/guix-cookbook.texi:582
  901. msgid "The @code{use-modules} expression tells which of the modules we need in the file. Modules are a collection of values and procedures. They are commonly called ``libraries'' or ``packages'' in other programming languages."
  902. msgstr "Der Ausdruck @code{use-modules} sagt aus, welche Module in der Datei gebraucht werden. Module sind eine Sammlung aus Werten und Prozeduren. In anderen Programmiersprachen werden sie oft „Bibliotheken“ oder „Pakete“ genannt."
  903. #. type: node
  904. #: guix-git/doc/guix-cookbook.texi:583
  905. #, no-wrap
  906. msgid "@samp{GUIX_PACKAGE_PATH}"
  907. msgstr "@samp{GUIX_PACKAGE_PATH}"
  908. #. type: samp{#1}
  909. #: guix-git/doc/guix-cookbook.texi:584
  910. #, no-wrap
  911. msgid "GUIX_PACKAGE_PATH"
  912. msgstr "GUIX_PACKAGE_PATH"
  913. #. type: emph{#1}
  914. #: guix-git/doc/guix-cookbook.texi:588
  915. msgid "Note: Starting from Guix 0.16, the more flexible Guix @dfn{channels} are the preferred way and supersede @samp{GUIX_PACKAGE_PATH}. See next section."
  916. msgstr "Anmerkung: Seit Guix 0.16 sind die vielseitigeren @dfn{Kanäle} von Guix die bevorzugte Wahl und sie lösen den @samp{GUIX_PACKAGE_PATH} ab. Siehe den nächsten Abschnitt."
  917. #. type: Plain text
  918. #: guix-git/doc/guix-cookbook.texi:592
  919. msgid "It can be tedious to specify the file from the command line instead of simply calling @code{guix package --install my-hello} as you would do with the official packages."
  920. msgstr "Es kann mühsam sein, die Datei auf der Befehlszeile anzugeben, statt einfach @code{guix package --install my-hello} aufzurufen, wie man es bei den offiziellen Paketen tun würde."
  921. #. type: Plain text
  922. #: guix-git/doc/guix-cookbook.texi:595
  923. msgid "Guix makes it possible to streamline the process by adding as many ``package declaration directories'' as you want."
  924. msgstr "Guix ermöglicht es, den Prozess zu optimieren, indem man so viele „Paketdeklarationsverzeichnisse“, wie man will, hinzufügt."
  925. #. type: Plain text
  926. #: guix-git/doc/guix-cookbook.texi:598
  927. #, fuzzy
  928. #| msgid "Create a directory, say @file{~./guix-packages} and add it to the @samp{GUIX_PACKAGE_PATH} environment variable:"
  929. msgid "Create a directory, say @file{~/guix-packages} and add it to the @samp{GUIX_PACKAGE_PATH} environment variable:"
  930. msgstr "Erzeugen Sie ein Verzeichnis, beispielsweise @file{~./guix-packages}, und fügen Sie es zur Umgebungsvariablen @env{GUIX_PACKAGE_PATH} hinzu:"
  931. #. type: example
  932. #: guix-git/doc/guix-cookbook.texi:602
  933. #, no-wrap
  934. msgid ""
  935. "$ mkdir ~/guix-packages\n"
  936. "$ export GUIX_PACKAGE_PATH=~/guix-packages\n"
  937. msgstr ""
  938. "$ mkdir ~/guix-packages\n"
  939. "$ export GUIX_PACKAGE_PATH=~/guix-packages\n"
  940. #. type: Plain text
  941. #: guix-git/doc/guix-cookbook.texi:605
  942. msgid "To add several directories, separate them with a colon (@code{:})."
  943. msgstr "Um mehrere Verzeichnisse hinzuzufügen, trennen Sie diese ab durch einen Doppelpunkt (@code{:})."
  944. #. type: Plain text
  945. #: guix-git/doc/guix-cookbook.texi:607
  946. msgid "Our previous @samp{my-hello} needs some adjustments though:"
  947. msgstr "Unser @samp{my-hello} von vorher braucht zudem ein paar Anpassungen:"
  948. #. type: lisp
  949. #: guix-git/doc/guix-cookbook.texi:614
  950. #, no-wrap
  951. msgid ""
  952. "(define-module (my-hello)\n"
  953. " #:use-module (guix licenses)\n"
  954. " #:use-module (guix packages)\n"
  955. " #:use-module (guix build-system gnu)\n"
  956. " #:use-module (guix download))\n"
  957. "\n"
  958. msgstr ""
  959. "(define-module (my-hello)\n"
  960. " #:use-module (guix licenses)\n"
  961. " #:use-module (guix packages)\n"
  962. " #:use-module (guix build-system gnu)\n"
  963. " #:use-module (guix download))\n"
  964. "\n"
  965. #. type: lisp
  966. #: guix-git/doc/guix-cookbook.texi:634
  967. #, no-wrap
  968. msgid ""
  969. "(define-public my-hello\n"
  970. " (package\n"
  971. " (name \"my-hello\")\n"
  972. " (version \"2.10\")\n"
  973. " (source (origin\n"
  974. " (method url-fetch)\n"
  975. " (uri (string-append \"mirror://gnu/hello/hello-\" version\n"
  976. " \".tar.gz\"))\n"
  977. " (sha256\n"
  978. " (base32\n"
  979. " \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n"
  980. " (build-system gnu-build-system)\n"
  981. " (synopsis \"Hello, Guix world: An example custom Guix package\")\n"
  982. " (description\n"
  983. " \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n"
  984. "serves as an example of standard GNU coding practices. As such, it supports\n"
  985. "command-line arguments, multiple languages, and so on.\")\n"
  986. " (home-page \"https://www.gnu.org/software/hello/\")\n"
  987. " (license gpl3+)))\n"
  988. msgstr ""
  989. "(define-public my-hello\n"
  990. " (package\n"
  991. " (name \"my-hello\")\n"
  992. " (version \"2.10\")\n"
  993. " (source (origin\n"
  994. " (method url-fetch)\n"
  995. " (uri (string-append \"mirror://gnu/hello/hello-\" version\n"
  996. " \".tar.gz\"))\n"
  997. " (sha256\n"
  998. " (base32\n"
  999. " \"0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i\"))))\n"
  1000. " (build-system gnu-build-system)\n"
  1001. " (synopsis \"Hello, Guix world: An example custom Guix package\")\n"
  1002. " (description\n"
  1003. " \"GNU Hello prints the message \\\"Hello, world!\\\" and then exits. It\n"
  1004. "serves as an example of standard GNU coding practices. As such, it supports\n"
  1005. "command-line arguments, multiple languages, and so on.\")\n"
  1006. " (home-page \"https://www.gnu.org/software/hello/\")\n"
  1007. " (license gpl3+)))\n"
  1008. #. type: Plain text
  1009. #: guix-git/doc/guix-cookbook.texi:640
  1010. msgid "Note that we have assigned the package value to an exported variable name with @code{define-public}. This is effectively assigning the package to the @code{my-hello} variable so that it can be referenced, among other as dependency of other packages."
  1011. msgstr "Beachten Sie, dass wir den Paketwert einer exportierten Variablen mit @code{define-public} zugewiesen haben. Das bedeutet, das Paket wird einer Variablen @code{my-hello} zugewiesen, damit darauf verwiesen werden kann. Unter anderem kann es dadurch als Abhängigkeit anderer Pakete verwendet werden."
  1012. #. type: Plain text
  1013. #: guix-git/doc/guix-cookbook.texi:645
  1014. msgid "If you use @code{guix package --install-from-file=my-hello.scm} on the above file, it will fail because the last expression, @code{define-public}, does not return a package. If you want to use @code{define-public} in this use-case nonetheless, make sure the file ends with an evaluation of @code{my-hello}:"
  1015. msgstr "Wenn Sie @code{guix package --install-from-file=my-hello.scm} auf der obigen Datei aufrufen, geht es schief, weil der letzte Ausdruck, @code{define-public}, kein Paket zurückliefert. Wenn Sie trotzdem @code{define-public} für jene Herangehensweise verwenden möchten, stellen Sie sicher, dass am Ende der Datei eine Auswertung von @code{my-hello} steht:"
  1016. #. type: lisp
  1017. #: guix-git/doc/guix-cookbook.texi:651
  1018. #, no-wrap
  1019. msgid ""
  1020. "; ...\n"
  1021. "(define-public my-hello\n"
  1022. " ; ...\n"
  1023. " )\n"
  1024. "\n"
  1025. msgstr ""
  1026. "; …\n"
  1027. "(define-public my-hello\n"
  1028. " ; …\n"
  1029. " )\n"
  1030. "\n"
  1031. #. type: lisp
  1032. #: guix-git/doc/guix-cookbook.texi:653
  1033. #, no-wrap
  1034. msgid "my-hello\n"
  1035. msgstr "my-hello\n"
  1036. #. type: Plain text
  1037. #: guix-git/doc/guix-cookbook.texi:656
  1038. msgid "This last example is not very typical."
  1039. msgstr "Meistens tut man das aber nicht."
  1040. #. type: Plain text
  1041. #: guix-git/doc/guix-cookbook.texi:659
  1042. msgid "Now @samp{my-hello} should be part of the package collection like all other official packages. You can verify this with:"
  1043. msgstr "@samp{my-hello} sollte nun Teil der Paketsammlung sein, genau wie all die anderen, offiziellen Pakete. Sie können das so ausprobieren:"
  1044. #. type: example
  1045. #: guix-git/doc/guix-cookbook.texi:662
  1046. #, no-wrap
  1047. msgid "$ guix package --show=my-hello\n"
  1048. msgstr "$ guix package --show=my-hello\n"
  1049. #. type: subsubsection
  1050. #: guix-git/doc/guix-cookbook.texi:664 guix-git/doc/guix-cookbook.texi:665
  1051. #, no-wrap
  1052. msgid "Guix channels"
  1053. msgstr "Guix-Kanäle"
  1054. #. type: Plain text
  1055. #: guix-git/doc/guix-cookbook.texi:671
  1056. msgid "Guix 0.16 features channels, which is very similar to @samp{GUIX_PACKAGE_PATH} but provides better integration and provenance tracking. Channels are not necessarily local, they can be maintained as a public Git repository for instance. Of course, several channels can be used at the same time."
  1057. msgstr "Guix 0.16 hat Kanäle eingeführt, die sehr ähnlich zu @samp{GUIX_PACKAGE_PATH} sind, sich aber besser integrieren und Provenienzverfolgung ermöglichen. Kanäle befinden sich nicht unbedingt auf einem lokalen Rechner, sie können zum Beispiel auch anderen als öffentliches Git-Repository angeboten werden. Natürlich können zur selben Zeit mehrere Kanäle benutzt werden."
  1058. #. type: Plain text
  1059. #: guix-git/doc/guix-cookbook.texi:673
  1060. msgid "@xref{Channels,,, guix, GNU Guix Reference Manual} for setup details."
  1061. msgstr "Siehe @ref{Kanäle,,, guix.de, Referenzhandbuch zu GNU Guix} für Details zu deren Einrichtung."
  1062. #. type: subsubsection
  1063. #: guix-git/doc/guix-cookbook.texi:674 guix-git/doc/guix-cookbook.texi:675
  1064. #, no-wrap
  1065. msgid "Direct checkout hacking"
  1066. msgstr "Direkt am Checkout hacken"
  1067. #. type: Plain text
  1068. #: guix-git/doc/guix-cookbook.texi:680
  1069. msgid "Working directly on the Guix project is recommended: it reduces the friction when the time comes to submit your changes upstream to let the community benefit from your hard work!"
  1070. msgstr "Es wird empfohlen, direkt am Code des Guix-Projekts zu arbeiten, weil Ihre Änderungen dann später mit weniger Schwierigkeiten bei uns eingereicht werden können, damit Ihre harte Arbeit der Gemeinschaft nützt!"
  1071. #. type: Plain text
  1072. #: guix-git/doc/guix-cookbook.texi:686
  1073. msgid "Unlike most software distributions, the Guix repository holds in one place both the tooling (including the package manager) and the package definitions. This choice was made so that it would give developers the flexibility to modify the API without breakage by updating all packages at the same time. This reduces development inertia."
  1074. msgstr "Anders als die meisten Software-Distributionen werden bei Guix sowohl Werkzeuge (einschließlich des Paketverwaltungsprogramms) als auch die Paketdefinitionen in einem Repository gespeichert. Der Grund für diese Entscheidung war, dass Entwickler die Freiheit haben sollten, die Programmierschnittstelle (API) zu ändern, ohne Inkompatibilitäten einzuführen, indem alle Pakete gleichzeitig mit der API aktualisiert werden. Dadurch wird die Entwicklung weniger träge."
  1075. #. type: Plain text
  1076. #: guix-git/doc/guix-cookbook.texi:688
  1077. msgid "Check out the official @uref{https://git-scm.com/, Git} repository:"
  1078. msgstr "Legen Sie ein Checkout des offiziellen @uref{https://git-scm.com/, Git-Repositorys} an:"
  1079. #. type: example
  1080. #: guix-git/doc/guix-cookbook.texi:691
  1081. #, no-wrap
  1082. msgid "$ git clone https://git.savannah.gnu.org/git/guix.git\n"
  1083. msgstr "$ git clone https://git.savannah.gnu.org/git/guix.git\n"
  1084. #. type: Plain text
  1085. #: guix-git/doc/guix-cookbook.texi:695
  1086. msgid "In the rest of this article, we use @samp{$GUIX_CHECKOUT} to refer to the location of the checkout."
  1087. msgstr "Im Rest dieses Artikels schreiben wir @samp{$GUIX_CHECKOUT}, wenn wir den Ort meinen, an dem das Checkout gespeichert ist."
  1088. #. type: Plain text
  1089. #: guix-git/doc/guix-cookbook.texi:699
  1090. msgid "Follow the instructions in the manual (@pxref{Contributing,,, guix, GNU Guix Reference Manual}) to set up the repository environment."
  1091. msgstr "Folgen Sie den Anweisungen im Handbuch (siehe (@ref{Mitwirken,,, guix.de, Referenzhandbuch zu GNU Guix}), um die nötige Umgebung für die Nutzung des Repositorys herzustellen."
  1092. #. type: Plain text
  1093. #: guix-git/doc/guix-cookbook.texi:702
  1094. msgid "Once ready, you should be able to use the package definitions from the repository environment."
  1095. msgstr "Sobald sie hergestellt wurde, sollten Sie die Paketdefinitionen aus der Repository-Umgebung benutzen können."
  1096. #. type: Plain text
  1097. #: guix-git/doc/guix-cookbook.texi:704
  1098. msgid "Feel free to edit package definitions found in @samp{$GUIX_CHECKOUT/gnu/packages}."
  1099. msgstr "Versuchen Sie sich ruhig daran, die Paketdefinitionen zu editieren, die Sie in @samp{$GUIX_CHECKOUT/gnu/packages} finden."
  1100. #. type: Plain text
  1101. #: guix-git/doc/guix-cookbook.texi:708
  1102. msgid "The @samp{$GUIX_CHECKOUT/pre-inst-env} script lets you use @samp{guix} over the package collection of the repository (@pxref{Running Guix Before It Is Installed,,, guix, GNU Guix Reference Manual})."
  1103. msgstr "Das Skript @samp{$GUIX_CHECKOUT/pre-inst-env} ermöglicht es Ihnen, @samp{guix} auf der Paketsammlung des Repositorys aufzurufen (siehe @ref{Guix vor der Installation ausführen,,, guix.de, Referenzhandbuch zu GNU Guix})."
  1104. #. type: itemize
  1105. #: guix-git/doc/guix-cookbook.texi:712
  1106. msgid "Search packages, such as Ruby:"
  1107. msgstr "So suchen Sie Pakete, z.B.@: Ruby:"
  1108. #. type: example
  1109. #: guix-git/doc/guix-cookbook.texi:719
  1110. #, no-wrap
  1111. msgid ""
  1112. " $ cd $GUIX_CHECKOUT\n"
  1113. " $ ./pre-inst-env guix package --list-available=ruby\n"
  1114. " ruby 1.8.7-p374 out gnu/packages/ruby.scm:119:2\n"
  1115. " ruby 2.1.6 out gnu/packages/ruby.scm:91:2\n"
  1116. " ruby 2.2.2 out gnu/packages/ruby.scm:39:2\n"
  1117. msgstr ""
  1118. " $ cd $GUIX_CHECKOUT\n"
  1119. " $ ./pre-inst-env guix package --list-available=ruby\n"
  1120. " ruby 1.8.7-p374 out gnu/packages/ruby.scm:119:2\n"
  1121. " ruby 2.1.6 out gnu/packages/ruby.scm:91:2\n"
  1122. " ruby 2.2.2 out gnu/packages/ruby.scm:39:2\n"
  1123. #. type: itemize
  1124. #: guix-git/doc/guix-cookbook.texi:723
  1125. msgid "Build a package, here Ruby version 2.1:"
  1126. msgstr "Erstellen Sie ein Paket, z.B.@: Ruby in Version 2.1:"
  1127. #. type: example
  1128. #: guix-git/doc/guix-cookbook.texi:727
  1129. #, no-wrap
  1130. msgid ""
  1131. " $ ./pre-inst-env guix build --keep-failed ruby@@2.1\n"
  1132. " /gnu/store/c13v73jxmj2nir2xjqaz5259zywsa9zi-ruby-2.1.6\n"
  1133. msgstr ""
  1134. " $ ./pre-inst-env guix build --keep-failed ruby@@2.1\n"
  1135. " /gnu/store/c13v73jxmj2nir2xjqaz5259zywsa9zi-ruby-2.1.6\n"
  1136. #. type: itemize
  1137. #: guix-git/doc/guix-cookbook.texi:731
  1138. msgid "Install it to your user profile:"
  1139. msgstr "Installieren Sie es in Ihr Profil:"
  1140. #. type: example
  1141. #: guix-git/doc/guix-cookbook.texi:734
  1142. #, no-wrap
  1143. msgid " $ ./pre-inst-env guix package --install ruby@@2.1\n"
  1144. msgstr " $ ./pre-inst-env guix package --install ruby@@2.1\n"
  1145. #. type: itemize
  1146. #: guix-git/doc/guix-cookbook.texi:738
  1147. msgid "Check for common mistakes:"
  1148. msgstr "Prüfen Sie auf häufige Fehler:"
  1149. #. type: example
  1150. #: guix-git/doc/guix-cookbook.texi:741
  1151. #, no-wrap
  1152. msgid " $ ./pre-inst-env guix lint ruby@@2.1\n"
  1153. msgstr " $ ./pre-inst-env guix lint ruby@@2.1\n"
  1154. #. type: Plain text
  1155. #: guix-git/doc/guix-cookbook.texi:746
  1156. msgid "Guix strives at maintaining a high packaging standard; when contributing to the Guix project, remember to"
  1157. msgstr "Guix ist bestrebt, einen hohen Standard an seine Pakete anzusetzen. Wenn Sie Beiträge zum Guix-Projekt leisten,"
  1158. #. type: itemize
  1159. #: guix-git/doc/guix-cookbook.texi:750
  1160. msgid "follow the coding style (@pxref{Coding Style,,, guix, GNU Guix Reference Manual}),"
  1161. msgstr "schreiben Sie Ihren Code im Stil von Guix (siehe @ref{Programmierstil,,, guix.de, Referenzhandbuch zu GNU Guix})"
  1162. #. type: itemize
  1163. #: guix-git/doc/guix-cookbook.texi:752
  1164. msgid "and review the check list from the manual (@pxref{Submitting Patches,,, guix, GNU Guix Reference Manual})."
  1165. msgstr "und schauen Sie sich die Kontrollliste aus dem Handbuch (siehe @ref{Einreichen von Patches,,, guix.de, Referenzhandbuch zu GNU Guix}) noch einmal an."
  1166. #. type: Plain text
  1167. #: guix-git/doc/guix-cookbook.texi:756
  1168. msgid "Once you are happy with the result, you are welcome to send your contribution to make it part of Guix. This process is also detailed in the manual. (@pxref{Contributing,,, guix, GNU Guix Reference Manual})"
  1169. msgstr "Sobald Sie mit dem Ergebnis zufrieden sind, freuen wir uns, wenn Sie Ihren Beitrag an uns schicken, damit wir ihn in Guix aufnehmen. Dieser Prozess wird auch im Handbuch beschrieben (siehe @ref{Mitwirken,,, guix.de, Referenzhandbuch zu GNU Guix})<."
  1170. #. type: Plain text
  1171. #: guix-git/doc/guix-cookbook.texi:759
  1172. msgid "It's a community effort so the more join in, the better Guix becomes!"
  1173. msgstr "Es handelt sich um eine gemeinschaftliche Arbeit, je mehr also mitmachen, desto besser wird Guix!"
  1174. #. type: subsection
  1175. #: guix-git/doc/guix-cookbook.texi:760 guix-git/doc/guix-cookbook.texi:761
  1176. #, no-wrap
  1177. msgid "Extended example"
  1178. msgstr "Erweitertes Beispiel"
  1179. #. type: Plain text
  1180. #: guix-git/doc/guix-cookbook.texi:766
  1181. msgid "The above ``Hello World'' example is as simple as it goes. Packages can be more complex than that and Guix can handle more advanced scenarios. Let's look at another, more sophisticated package (slightly modified from the source):"
  1182. msgstr "Einfacher als obiges Hallo-Welt-Beispiel wird es nicht. Pakete können auch komplexer als das sein und Guix eignet sich für fortgeschrittenere Szenarien. Schauen wir uns ein anderes, umfangreicheres Paket an (leicht modifiziert gegenüber Guix’ Quellcode):"
  1183. #. type: lisp
  1184. #: guix-git/doc/guix-cookbook.texi:780
  1185. #, no-wrap
  1186. msgid ""
  1187. "(define-module (gnu packages version-control)\n"
  1188. " #:use-module ((guix licenses) #:prefix license:)\n"
  1189. " #:use-module (guix utils)\n"
  1190. " #:use-module (guix packages)\n"
  1191. " #:use-module (guix git-download)\n"
  1192. " #:use-module (guix build-system cmake)\n"
  1193. " #:use-module (gnu packages ssh)\n"
  1194. " #:use-module (gnu packages web)\n"
  1195. " #:use-module (gnu packages pkg-config)\n"
  1196. " #:use-module (gnu packages python)\n"
  1197. " #:use-module (gnu packages compression)\n"
  1198. " #:use-module (gnu packages tls))\n"
  1199. "\n"
  1200. msgstr ""
  1201. "(define-module (gnu packages version-control)\n"
  1202. " #:use-module ((guix licenses) #:prefix license:)\n"
  1203. " #:use-module (guix utils)\n"
  1204. " #:use-module (guix packages)\n"
  1205. " #:use-module (guix git-download)\n"
  1206. " #:use-module (guix build-system cmake)\n"
  1207. " #:use-module (gnu packages ssh)\n"
  1208. " #:use-module (gnu packages web)\n"
  1209. " #:use-module (gnu packages pkg-config)\n"
  1210. " #:use-module (gnu packages python)\n"
  1211. " #:use-module (gnu packages compression)\n"
  1212. " #:use-module (gnu packages tls))\n"
  1213. "\n"
  1214. #. type: lisp
  1215. #: guix-git/doc/guix-cookbook.texi:840
  1216. #, no-wrap
  1217. msgid ""
  1218. "(define-public my-libgit2\n"
  1219. " (let ((commit \"e98d0a37c93574d2c6107bf7f31140b548c6a7bf\")\n"
  1220. " (revision \"1\"))\n"
  1221. " (package\n"
  1222. " (name \"my-libgit2\")\n"
  1223. " (version (git-version \"0.26.6\" revision commit))\n"
  1224. " (source (origin\n"
  1225. " (method git-fetch)\n"
  1226. " (uri (git-reference\n"
  1227. " (url \"https://github.com/libgit2/libgit2/\")\n"
  1228. " (commit commit)))\n"
  1229. " (file-name (git-file-name name version))\n"
  1230. " (sha256\n"
  1231. " (base32\n"
  1232. " \"17pjvprmdrx4h6bb1hhc98w9qi6ki7yl57f090n9kbhswxqfs7s3\"))\n"
  1233. " (patches (search-patches \"libgit2-mtime-0.patch\"))\n"
  1234. " (modules '((guix build utils)))\n"
  1235. " (snippet '(begin\n"
  1236. " ;; Remove bundled software.\n"
  1237. " (delete-file-recursively \"deps\")\n"
  1238. " #true))))\n"
  1239. " (build-system cmake-build-system)\n"
  1240. " (outputs '(\"out\" \"debug\"))\n"
  1241. " (arguments\n"
  1242. " `(#:tests? #true ; Run the test suite (this is the default)\n"
  1243. " #:configure-flags '(\"-DUSE_SHA1DC=ON\") ; SHA-1 collision detection\n"
  1244. " #:phases\n"
  1245. " (modify-phases %standard-phases\n"
  1246. " (add-after 'unpack 'fix-hardcoded-paths\n"
  1247. " (lambda _\n"
  1248. " (substitute* \"tests/repo/init.c\"\n"
  1249. " ((\"#!/bin/sh\") (string-append \"#!\" (which \"sh\"))))\n"
  1250. " (substitute* \"tests/clar/fs.h\"\n"
  1251. " ((\"/bin/cp\") (which \"cp\"))\n"
  1252. " ((\"/bin/rm\") (which \"rm\")))\n"
  1253. " #true))\n"
  1254. " ;; Run checks more verbosely.\n"
  1255. " (replace 'check\n"
  1256. " (lambda _ (invoke \"./libgit2_clar\" \"-v\" \"-Q\")))\n"
  1257. " (add-after 'unpack 'make-files-writable-for-tests\n"
  1258. " (lambda _ (for-each make-file-writable (find-files \".\" \".*\")))))))\n"
  1259. " (inputs\n"
  1260. " `((\"libssh2\" ,libssh2)\n"
  1261. " (\"http-parser\" ,http-parser)\n"
  1262. " (\"python\" ,python-wrapper)))\n"
  1263. " (native-inputs\n"
  1264. " `((\"pkg-config\" ,pkg-config)))\n"
  1265. " (propagated-inputs\n"
  1266. " ;; These two libraries are in 'Requires.private' in libgit2.pc.\n"
  1267. " `((\"openssl\" ,openssl)\n"
  1268. " (\"zlib\" ,zlib)))\n"
  1269. " (home-page \"https://libgit2.github.com/\")\n"
  1270. " (synopsis \"Library providing Git core methods\")\n"
  1271. " (description\n"
  1272. " \"Libgit2 is a portable, pure C implementation of the Git core methods\n"
  1273. "provided as a re-entrant linkable library with a solid API, allowing you to\n"
  1274. "write native speed custom Git applications in any language with bindings.\")\n"
  1275. " ;; GPLv2 with linking exception\n"
  1276. " (license license:gpl2))))\n"
  1277. msgstr ""
  1278. "(define-public my-libgit2\n"
  1279. " (let ((commit \"e98d0a37c93574d2c6107bf7f31140b548c6a7bf\")\n"
  1280. " (revision \"1\"))\n"
  1281. " (package\n"
  1282. " (name \"my-libgit2\")\n"
  1283. " (version (git-version \"0.26.6\" revision commit))\n"
  1284. " (source (origin\n"
  1285. " (method git-fetch)\n"
  1286. " (uri (git-reference\n"
  1287. " (url \"https://github.com/libgit2/libgit2/\")\n"
  1288. " (commit commit)))\n"
  1289. " (file-name (git-file-name name version))\n"
  1290. " (sha256\n"
  1291. " (base32\n"
  1292. " \"17pjvprmdrx4h6bb1hhc98w9qi6ki7yl57f090n9kbhswxqfs7s3\"))\n"
  1293. " (patches (search-patches \"libgit2-mtime-0.patch\"))\n"
  1294. " (modules '((guix build utils)))\n"
  1295. " (snippet '(begin\n"
  1296. " ;; Remove bundled software.\n"
  1297. " (delete-file-recursively \"deps\")\n"
  1298. " #true))))\n"
  1299. " (build-system cmake-build-system)\n"
  1300. " (outputs '(\"out\" \"debug\"))\n"
  1301. " (arguments\n"
  1302. " `(#:tests? #true ; Run the test suite (this is the default)\n"
  1303. " #:configure-flags '(\"-DUSE_SHA1DC=ON\") ; SHA-1 collision detection\n"
  1304. " #:phases\n"
  1305. " (modify-phases %standard-phases\n"
  1306. " (add-after 'unpack 'fix-hardcoded-paths\n"
  1307. " (lambda _\n"
  1308. " (substitute* \"tests/repo/init.c\"\n"
  1309. " ((\"#!/bin/sh\") (string-append \"#!\" (which \"sh\"))))\n"
  1310. " (substitute* \"tests/clar/fs.h\"\n"
  1311. " ((\"/bin/cp\") (which \"cp\"))\n"
  1312. " ((\"/bin/rm\") (which \"rm\")))\n"
  1313. " #true))\n"
  1314. " ;; Run checks more verbosely.\n"
  1315. " (replace 'check\n"
  1316. " (lambda _ (invoke \"./libgit2_clar\" \"-v\" \"-Q\")))\n"
  1317. " (add-after 'unpack 'make-files-writable-for-tests\n"
  1318. " (lambda _ (for-each make-file-writable (find-files \".\" \".*\")))))))\n"
  1319. " (inputs\n"
  1320. " `((\"libssh2\" ,libssh2)\n"
  1321. " (\"http-parser\" ,http-parser)\n"
  1322. " (\"python\" ,python-wrapper)))\n"
  1323. " (native-inputs\n"
  1324. " `((\"pkg-config\" ,pkg-config)))\n"
  1325. " (propagated-inputs\n"
  1326. " ;; These two libraries are in 'Requires.private' in libgit2.pc.\n"
  1327. " `((\"openssl\" ,openssl)\n"
  1328. " (\"zlib\" ,zlib)))\n"
  1329. " (home-page \"https://libgit2.github.com/\")\n"
  1330. " (synopsis \"Library providing Git core methods\")\n"
  1331. " (description\n"
  1332. " \"Libgit2 is a portable, pure C implementation of the Git core methods\n"
  1333. "provided as a re-entrant linkable library with a solid API, allowing you to\n"
  1334. "write native speed custom Git applications in any language with bindings.\")\n"
  1335. " ;; GPLv2 with linking exception\n"
  1336. " (license license:gpl2))))\n"
  1337. #. type: Plain text
  1338. #: guix-git/doc/guix-cookbook.texi:845
  1339. msgid "(In those cases were you only want to tweak a few fields from a package definition, you should rely on inheritance instead of copy-pasting everything. See below.)"
  1340. msgstr "(In solchen Fällen, wo Sie nur ein paar wenige Felder einer Paketdefinition abändern wollen, wäre es wirklich besser, wenn Sie Vererbung einsetzen würden, statt alles abzuschreiben. Siehe unten.)"
  1341. #. type: Plain text
  1342. #: guix-git/doc/guix-cookbook.texi:847
  1343. msgid "Let's discuss those fields in depth."
  1344. msgstr "Reden wir über diese Felder im Detail."
  1345. #. type: subsubsection
  1346. #: guix-git/doc/guix-cookbook.texi:848
  1347. #, no-wrap
  1348. msgid "@code{git-fetch} method"
  1349. msgstr "@code{git-fetch}-Methode"
  1350. #. type: Plain text
  1351. #: guix-git/doc/guix-cookbook.texi:855
  1352. msgid "Unlike the @code{url-fetch} method, @code{git-fetch} expects a @code{git-reference} which takes a Git repository and a commit. The commit can be any Git reference such as tags, so if the @code{version} is tagged, then it can be used directly. Sometimes the tag is prefixed with a @code{v}, in which case you'd use @code{(commit (string-append \"v\" version))}."
  1353. msgstr "Anders als die @code{url-fetch}-Methode erwartet @code{git-fetch} eine @code{git-reference}, welche ein Git-Repository und einen Commit entgegennimmt. Der Commit kann eine beliebige Art von Git-Referenz sein, z.B.@: ein Tag. Wenn die @code{version} also mit einem Tag versehen ist, kann sie einfach benutzt werden. Manchmal ist dem Tag ein Präfix @code{v} vorangestellt. In diesem Fall würden Sie @code{(commit (string-append \"v\" version))} schreiben."
  1354. #. type: Plain text
  1355. #: guix-git/doc/guix-cookbook.texi:859
  1356. msgid "To ensure that the source code from the Git repository is stored in a directory with a descriptive name, we use @code{(file-name (git-file-name name version))}."
  1357. msgstr "Um sicherzustellen, dass der Quellcode aus dem Git-Repository in einem Verzeichnis mit nachvollziehbarem Namen landet, schreiben wir @code{(file-name (git-file-name name version))}."
  1358. #. type: Plain text
  1359. #: guix-git/doc/guix-cookbook.texi:864
  1360. msgid "The @code{git-version} procedure can be used to derive the version when packaging programs for a specific commit, following the Guix contributor guidelines (@pxref{Version Numbers,,, guix, GNU Guix Reference Manual})."
  1361. msgstr "Mit der Prozedur @code{git-version} kann die Version beim Paketieren eines bestimmten Commits eines Programms entsprechend den Richtlinien für Beiträge zu Guix (@pxref{Versionsnummern,,, guix.de, Referenzhandbuch zu GNU Guix}) abgeleitet werden."
  1362. #. type: Plain text
  1363. #: guix-git/doc/guix-cookbook.texi:868
  1364. msgid "How does one obtain the @code{sha256} hash that's in there, you ask? By invoking @command{guix hash} on a checkout of the desired commit, along these lines:"
  1365. msgstr "Sie fragen, woher man den darin angegebenen @code{sha256}-Hash bekommt? Indem Sie @command{guix hash} auf einem Checkout des gewünschten Commits aufrufen, ungefähr so:"
  1366. #. type: example
  1367. #: guix-git/doc/guix-cookbook.texi:874
  1368. #, no-wrap
  1369. msgid ""
  1370. "git clone https://github.com/libgit2/libgit2/\n"
  1371. "cd libgit2\n"
  1372. "git checkout v0.26.6\n"
  1373. "guix hash -rx .\n"
  1374. msgstr ""
  1375. "git clone https://github.com/libgit2/libgit2/\n"
  1376. "cd libgit2\n"
  1377. "git checkout v0.26.6\n"
  1378. "guix hash -rx .\n"
  1379. #. type: Plain text
  1380. #: guix-git/doc/guix-cookbook.texi:879
  1381. msgid "@command{guix hash -rx} computes a SHA256 hash over the whole directory, excluding the @file{.git} sub-directory (@pxref{Invoking guix hash,,, guix, GNU Guix Reference Manual})."
  1382. msgstr "@command{guix hash -rx} berechnet einen SHA256-Hash des gesamten Verzeichnisses, abgesehen vom @file{.git}-Unterverzeichnis (siehe @ref{Aufruf von guix hash,,, guix.de, Referenzhandbuch zu GNU Guix})."
  1383. #. type: Plain text
  1384. #: guix-git/doc/guix-cookbook.texi:882
  1385. msgid "In the future, @command{guix download} will hopefully be able to do these steps for you, just like it does for regular downloads."
  1386. msgstr "In Zukunft wird @command{guix download} diese Schritte hoffentlich für Sie erledigen können, genau wie es das für normales Herunterladen macht."
  1387. #. type: subsubsection
  1388. #: guix-git/doc/guix-cookbook.texi:883
  1389. #, no-wrap
  1390. msgid "Snippets"
  1391. msgstr "Schnipsel"
  1392. #. type: Plain text
  1393. #: guix-git/doc/guix-cookbook.texi:889
  1394. msgid "Snippets are quoted (i.e. non-evaluated) Scheme code that are a means of patching the source. They are a Guix-y alternative to the traditional @file{.patch} files. Because of the quote, the code in only evaluated when passed to the Guix daemon for building. There can be as many snippets as needed."
  1395. msgstr "„Snippets“, deutsch Schnipsel, sind mit z.B.@: @code{quote}-Zeichen maskierte, also nicht ausgewertete, Stücke Scheme-Code, mit denen der Quellcode gepatcht wird. Sie sind eine guixige Alternative zu traditionellen @file{.patch}-Dateien. Wegen der Maskierung werden sie erst dann ausgewertet, wenn sie an den Guix-Daemon zum Erstellen übergeben werden. Es kann so viele Schnipsel geben wie nötig."
  1396. #. type: Plain text
  1397. #: guix-git/doc/guix-cookbook.texi:892
  1398. msgid "Snippets might need additional Guile modules which can be imported from the @code{modules} field."
  1399. msgstr "In Schnipseln könnten zusätzliche Guile-Module benötigt werden. Diese können importiert werden, indem man sie im Feld @code{modules} angibt."
  1400. #. type: subsubsection
  1401. #: guix-git/doc/guix-cookbook.texi:893
  1402. #, no-wrap
  1403. msgid "Inputs"
  1404. msgstr "Eingaben"
  1405. #. type: Plain text
  1406. #: guix-git/doc/guix-cookbook.texi:896
  1407. msgid "First, a syntactic comment: See the quasi-quote / comma syntax?"
  1408. msgstr "Zunächst ein syntaktischer Kommentar: Sehen Sie die Syntax mit @code{quasiquote} und Komma?"
  1409. #. type: lisp
  1410. #: guix-git/doc/guix-cookbook.texi:900
  1411. #, no-wrap
  1412. msgid ""
  1413. " (native-inputs\n"
  1414. " `((\"pkg-config\" ,pkg-config)))\n"
  1415. msgstr ""
  1416. " (native-inputs\n"
  1417. " `((\"pkg-config\" ,pkg-config)))\n"
  1418. #. type: Plain text
  1419. #: guix-git/doc/guix-cookbook.texi:903
  1420. msgid "is equivalent to"
  1421. msgstr "ist das Gleiche wie"
  1422. #. type: lisp
  1423. #: guix-git/doc/guix-cookbook.texi:907
  1424. #, no-wrap
  1425. msgid ""
  1426. " (native-inputs\n"
  1427. " (list (list \"pkg-config\" pkg-config)))\n"
  1428. msgstr ""
  1429. " (native-inputs\n"
  1430. " (list (list \"pkg-config\" pkg-config)))\n"
  1431. #. type: Plain text
  1432. #: guix-git/doc/guix-cookbook.texi:910
  1433. msgid "You'll mostly see the former because it's shorter."
  1434. msgstr "Sie werden hauptsächlich erstere Variante sehen, weil sie kürzer ist."
  1435. #. type: Plain text
  1436. #: guix-git/doc/guix-cookbook.texi:912
  1437. msgid "There are 3 different input types. In short:"
  1438. msgstr "Es gibt 3 verschiedene Arten von Eingaben. Kurz gefasst:"
  1439. #. type: item
  1440. #: guix-git/doc/guix-cookbook.texi:914
  1441. #, no-wrap
  1442. msgid "native-inputs"
  1443. msgstr "native-inputs"
  1444. #. type: table
  1445. #: guix-git/doc/guix-cookbook.texi:917
  1446. msgid "Required for building but not runtime -- installing a package through a substitute won't install these inputs."
  1447. msgstr "Sie werden zum Erstellen gebraucht, aber @emph{nicht} zur Laufzeit — wenn Sie ein Paket als Substitut installieren, werden diese Eingaben nirgendwo installiert."
  1448. #. type: item
  1449. #: guix-git/doc/guix-cookbook.texi:917
  1450. #, no-wrap
  1451. msgid "inputs"
  1452. msgstr "inputs"
  1453. #. type: table
  1454. #: guix-git/doc/guix-cookbook.texi:920
  1455. msgid "Installed in the store but not in the profile, as well as being present at build time."
  1456. msgstr "Sie werden in den Store installiert, aber nicht in das Profil, und sie stehen beim Erstellen zur Verfügung."
  1457. #. type: item
  1458. #: guix-git/doc/guix-cookbook.texi:920
  1459. #, no-wrap
  1460. msgid "propagated-inputs"
  1461. msgstr "propagated-inputs"
  1462. #. type: table
  1463. #: guix-git/doc/guix-cookbook.texi:923
  1464. msgid "Installed in the store and in the profile, as well as being present at build time."
  1465. msgstr "Sie werden sowohl in den Store als auch ins Profil installiert und sind auch beim Erstellen verfügbar."
  1466. #. type: Plain text
  1467. #: guix-git/doc/guix-cookbook.texi:926
  1468. msgid "@xref{Package Reference,,, guix, GNU Guix Reference Manual} for more details."
  1469. msgstr "Siehe @ref{„package“-Referenz,,, guix.de, Referenzhandbuch zu GNU Guix} für mehr Details."
  1470. #. type: Plain text
  1471. #: guix-git/doc/guix-cookbook.texi:930
  1472. msgid "The distinction between the various inputs is important: if a dependency can be handled as an @emph{input} instead of a @emph{propagated input}, it should be done so, or else it ``pollutes'' the user profile for no good reason."
  1473. msgstr "Der Unterschied zwischen den verschiedenen Eingaben ist wichtig: Wenn eine Abhängigkeit als @code{input} statt als @code{propagated-input} ausreicht, dann sollte sie auch so eingeordnet werden, sonst „verschmutzt“ sie das Profil des Benutzers ohne guten Grund."
  1474. #. type: Plain text
  1475. #: guix-git/doc/guix-cookbook.texi:937
  1476. msgid "For instance, a user installing a graphical program that depends on a command line tool might only be interested in the graphical part, so there is no need to force the command line tool into the user profile. The dependency is a concern to the package, not to the user. @emph{Inputs} make it possible to handle dependencies without bugging the user by adding undesired executable files (or libraries) to their profile."
  1477. msgstr "Wenn eine Nutzerin beispielsweise ein grafisches Programm installiert, das von einem Befehlszeilenwerkzeug abhängt, sie sich aber nur für den grafischen Teil interessiert, dann sollten wir sie nicht zur Installation des Befehlszeilenwerkzeugs in ihr Benutzerprofil zwingen. Um die Abhängigkeit sollte sich das Paket kümmern, nicht seine Benutzerin. Mit @emph{Inputs} können wir Abhängigkeiten verwenden, wo sie gebraucht werden, ohne Nutzer zu belästigen, indem wir ausführbare Dateien (oder Bibliotheken) in deren Profil installieren."
  1478. #. type: Plain text
  1479. #: guix-git/doc/guix-cookbook.texi:943
  1480. msgid "Same goes for @emph{native-inputs}: once the program is installed, build-time dependencies can be safely garbage-collected. It also matters when a substitute is available, in which case only the @emph{inputs} and @emph{propagated inputs} will be fetched: the @emph{native inputs} are not required to install a package from a substitute."
  1481. msgstr "Das Gleiche gilt für @emph{native-inputs}: Wenn das Programm einmal installiert ist, können Abhängigkeiten zur Erstellungszeit gefahrlos dem Müllsammler anvertraut werden. Sie sind auch besser, wenn ein Substitut verfügbar ist, so dass nur die @code{inputs} und @code{propagated-inputs} heruntergeladen werden; @code{native-inputs} braucht niemand, der das Paket aus einem Substitut heraus installiert."
  1482. #. type: subsubsection
  1483. #: guix-git/doc/guix-cookbook.texi:944
  1484. #, no-wrap
  1485. msgid "Outputs"
  1486. msgstr "Ausgaben"
  1487. #. type: Plain text
  1488. #: guix-git/doc/guix-cookbook.texi:948
  1489. msgid "Just like how a package can have multiple inputs, it can also produce multiple outputs."
  1490. msgstr "Genau wie ein Paket mehrere Eingaben haben kann, kann es auch mehrere Ausgaben haben."
  1491. #. type: Plain text
  1492. #: guix-git/doc/guix-cookbook.texi:950
  1493. msgid "Each output corresponds to a separate directory in the store."
  1494. msgstr "Jede Ausgabe entspricht einem anderen Verzeichnis im Store."
  1495. #. type: Plain text
  1496. #: guix-git/doc/guix-cookbook.texi:953
  1497. msgid "The user can choose which output to install; this is useful to save space or to avoid polluting the user profile with unwanted executables or libraries."
  1498. msgstr "Die Benutzerin kann sich entscheiden, welche Ausgabe sie installieren will; so spart sie Platz auf dem Datenträger und verschmutzt ihr Benutzerprofil nicht mit unerwünschten ausführbaren Dateien oder Bibliotheken."
  1499. #. type: Plain text
  1500. #: guix-git/doc/guix-cookbook.texi:956
  1501. msgid "Output separation is optional. When the @code{outputs} field is left out, the default and only output (the complete package) is referred to as @code{\"out\"}."
  1502. msgstr "Nach Ausgaben zu trennen ist optional. Wenn Sie kein @code{outputs}-Feld schreiben, heißt die standardmäßige und einzige Ausgabe (also das ganze Paket) schlicht @code{\"out\"}."
  1503. #. type: Plain text
  1504. #: guix-git/doc/guix-cookbook.texi:958
  1505. msgid "Typical separate output names include @code{debug} and @code{doc}."
  1506. msgstr "Typische Namen für getrennte Ausgaben sind @code{debug} und @code{doc}."
  1507. #. type: Plain text
  1508. #: guix-git/doc/guix-cookbook.texi:962
  1509. msgid "It's advised to separate outputs only when you've shown it's worth it: if the output size is significant (compare with @code{guix size}) or in case the package is modular."
  1510. msgstr "Es wird empfohlen, getrennte Ausgaben nur dann anzubieten, wenn Sie gezeigt haben, dass es sich lohnt, d.h.@: wenn die Ausgabengröße signifikant ist (vergleichen Sie sie mittels @code{guix size}) oder das Paket modular aufgebaut ist."
  1511. #. type: subsubsection
  1512. #: guix-git/doc/guix-cookbook.texi:963
  1513. #, no-wrap
  1514. msgid "Build system arguments"
  1515. msgstr "Argumente ans Erstellungssystem"
  1516. #. type: Plain text
  1517. #: guix-git/doc/guix-cookbook.texi:966
  1518. msgid "The @code{arguments} is a keyword-value list used to configure the build process."
  1519. msgstr "@code{arguments} ist eine Liste aus Schlüsselwort-Wert-Paaren (eine „keyword-value list“), mit denen der Erstellungsprozess konfiguriert wird."
  1520. #. type: Plain text
  1521. #: guix-git/doc/guix-cookbook.texi:971
  1522. msgid "The simplest argument @code{#:tests?} can be used to disable the test suite when building the package. This is mostly useful when the package does not feature any test suite. It's strongly recommended to keep the test suite on if there is one."
  1523. msgstr "Das einfachste Argument @code{#:tests?} kann man benutzen, um den Testkatalog bei der Erstellung des Pakets nicht zu prüfen. Das braucht man meistens dann, wenn das Paket überhaupt keinen Testkatalog hat. Wir empfehlen sehr, den Testkatalog zu benutzen, wenn es einen gibt."
  1524. #. type: Plain text
  1525. #: guix-git/doc/guix-cookbook.texi:975
  1526. msgid "Another common argument is @code{:make-flags}, which specifies a list of flags to append when running make, as you would from the command line. For instance, the following flags"
  1527. msgstr "Ein anderes häufiges Argument ist @code{:make-flags}, was eine Liste an den @code{make}-Aufruf anzuhängender Befehlszeilenargumente festlegt, so wie Sie sie auf der Befehlszeile angeben würden. Zum Beispiel werden die folgenden @code{:make-flags}"
  1528. #. type: lisp
  1529. #: guix-git/doc/guix-cookbook.texi:979
  1530. #, no-wrap
  1531. msgid ""
  1532. "#:make-flags (list (string-append \"prefix=\" (assoc-ref %outputs \"out\"))\n"
  1533. " \"CC=gcc\")\n"
  1534. msgstr ""
  1535. "#:make-flags (list (string-append \"prefix=\" (assoc-ref %outputs \"out\"))\n"
  1536. " \"CC=gcc\")\n"
  1537. #. type: Plain text
  1538. #: guix-git/doc/guix-cookbook.texi:982
  1539. msgid "translate into"
  1540. msgstr "übersetzt zu"
  1541. #. type: example
  1542. #: guix-git/doc/guix-cookbook.texi:985
  1543. #, no-wrap
  1544. msgid "$ make CC=gcc prefix=/gnu/store/...-<out>\n"
  1545. msgstr "$ make CC=gcc prefix=/gnu/store/...-<out>\n"
  1546. #. type: Plain text
  1547. #: guix-git/doc/guix-cookbook.texi:991
  1548. msgid "This sets the C compiler to @code{gcc} and the @code{prefix} variable (the installation directory in Make parlance) to @code{(assoc-ref %outputs \"out\")}, which is a build-stage global variable pointing to the destination directory in the store (something like @file{/gnu/store/...-my-libgit2-20180408})."
  1549. msgstr "Dadurch wird als C-Compiler @code{gcc} verwendet und als @code{prefix}-Variable (das Installationsverzeichnis in der Sprechweise von Make) wird @code{(assoc-ref %outputs \"out\")} verwendet, also eine globale Variable der Erstellungsschicht, die auf das Zielverzeichnis im Store verweist (so etwas wie @file{/gnu/store/…-my-libgit2-20180408})."
  1550. #. type: Plain text
  1551. #: guix-git/doc/guix-cookbook.texi:993
  1552. msgid "Similarly, it's possible to set the configure flags:"
  1553. msgstr "Auf gleiche Art kann man auch die Befehlszeilenoptionen für configure festlegen:"
  1554. #. type: lisp
  1555. #: guix-git/doc/guix-cookbook.texi:996
  1556. #, no-wrap
  1557. msgid "#:configure-flags '(\"-DUSE_SHA1DC=ON\")\n"
  1558. msgstr "#:configure-flags '(\"-DUSE_SHA1DC=ON\")\n"
  1559. #. type: Plain text
  1560. #: guix-git/doc/guix-cookbook.texi:1000
  1561. msgid "The @code{%build-inputs} variable is also generated in scope. It's an association table that maps the input names to their store directories."
  1562. msgstr "Die Variable @code{%build-inputs} wird auch in diesem Sichtbarkeitsbereich erzeugt. Es handelt sich um eine assoziative Liste, die von den Namen der Eingaben auf ihre Verzeichnisse im Store abbildet."
  1563. #. type: Plain text
  1564. #: guix-git/doc/guix-cookbook.texi:1005
  1565. msgid "The @code{phases} keyword lists the sequential steps of the build system. Typically phases include @code{unpack}, @code{configure}, @code{build}, @code{install} and @code{check}. To know more about those phases, you need to work out the appropriate build system definition in @samp{$GUIX_CHECKOUT/guix/build/gnu-build-system.scm}:"
  1566. msgstr "Das @code{phases}-Schlüsselwort listet der Reihe nach die vom Erstellungssystem durchgeführten Schritte auf. Zu den üblichen Phasen gehören @code{unpack}, @code{configure}, @code{build}, @code{install} und @code{check}. Um mehr über diese Phasen zu lernen, müssen Sie sich die Definition des zugehörigen Erstellungssystems in @samp{$GUIX_CHECKOUT/guix/build/gnu-build-system.scm} anschauen:"
  1567. #. type: lisp
  1568. #: guix-git/doc/guix-cookbook.texi:1024
  1569. #, no-wrap
  1570. msgid ""
  1571. "(define %standard-phases\n"
  1572. " ;; Standard build phases, as a list of symbol/procedure pairs.\n"
  1573. " (let-syntax ((phases (syntax-rules ()\n"
  1574. " ((_ p ...) `((p . ,p) ...)))))\n"
  1575. " (phases set-SOURCE-DATE-EPOCH set-paths install-locale unpack\n"
  1576. " bootstrap\n"
  1577. " patch-usr-bin-file\n"
  1578. " patch-source-shebangs configure patch-generated-file-shebangs\n"
  1579. " build check install\n"
  1580. " patch-shebangs strip\n"
  1581. " validate-runpath\n"
  1582. " validate-documentation-location\n"
  1583. " delete-info-dir-file\n"
  1584. " patch-dot-desktop-files\n"
  1585. " install-license-files\n"
  1586. " reset-gzip-timestamps\n"
  1587. " compress-documentation)))\n"
  1588. msgstr ""
  1589. "(define %standard-phases\n"
  1590. " ;; Standard build phases, as a list of symbol/procedure pairs.\n"
  1591. " (let-syntax ((phases (syntax-rules ()\n"
  1592. " ((_ p ...) `((p . ,p) ...)))))\n"
  1593. " (phases set-SOURCE-DATE-EPOCH set-paths install-locale unpack\n"
  1594. " bootstrap\n"
  1595. " patch-usr-bin-file\n"
  1596. " patch-source-shebangs configure patch-generated-file-shebangs\n"
  1597. " build check install\n"
  1598. " patch-shebangs strip\n"
  1599. " validate-runpath\n"
  1600. " validate-documentation-location\n"
  1601. " delete-info-dir-file\n"
  1602. " patch-dot-desktop-files\n"
  1603. " install-license-files\n"
  1604. " reset-gzip-timestamps\n"
  1605. " compress-documentation)))\n"
  1606. #. type: Plain text
  1607. #: guix-git/doc/guix-cookbook.texi:1027
  1608. msgid "Or from the REPL:"
  1609. msgstr "Alternativ auf einer REPL:"
  1610. #. type: lisp
  1611. #: guix-git/doc/guix-cookbook.texi:1033
  1612. #, no-wrap
  1613. msgid ""
  1614. "(add-to-load-path \"/path/to/guix/checkout\")\n"
  1615. ",use (guix build gnu-build-system)\n"
  1616. "(map first %standard-phases)\n"
  1617. "@result{} (set-SOURCE-DATE-EPOCH set-paths install-locale unpack bootstrap patch-usr-bin-file patch-source-shebangs configure patch-generated-file-shebangs build check install patch-shebangs strip validate-runpath validate-documentation-location delete-info-dir-file patch-dot-desktop-files install-license-files reset-gzip-timestamps compress-documentation)\n"
  1618. msgstr ""
  1619. "(add-to-load-path \"/path/to/guix/checkout\")\n"
  1620. ",use (guix build gnu-build-system)\n"
  1621. "(map first %standard-phases)\n"
  1622. "@result{} (set-SOURCE-DATE-EPOCH set-paths install-locale unpack bootstrap patch-usr-bin-file patch-source-shebangs configure patch-generated-file-shebangs build check install patch-shebangs strip validate-runpath validate-documentation-location delete-info-dir-file patch-dot-desktop-files install-license-files reset-gzip-timestamps compress-documentation)\n"
  1623. #. type: Plain text
  1624. #: guix-git/doc/guix-cookbook.texi:1037
  1625. msgid "If you want to know more about what happens during those phases, consult the associated procedures."
  1626. msgstr "Wenn Sie mehr darüber wissen wollen, was in diesen Phasen passiert, schauen Sie in den jeweiligen Prozeduren."
  1627. #. type: Plain text
  1628. #: guix-git/doc/guix-cookbook.texi:1040
  1629. msgid "For instance, as of this writing the definition of @code{unpack} for the GNU build system is:"
  1630. msgstr "Beispielsweise sieht momentan, als dies hier geschrieben wurde, die Definition von @code{unpack} für das GNU-Erstellungssystem so aus:"
  1631. #. type: lisp
  1632. #: guix-git/doc/guix-cookbook.texi:1050
  1633. #, no-wrap
  1634. msgid ""
  1635. "(define* (unpack #:key source #:allow-other-keys)\n"
  1636. " \"Unpack SOURCE in the working directory, and change directory within the\n"
  1637. "source. When SOURCE is a directory, copy it in a sub-directory of the current\n"
  1638. "working directory.\"\n"
  1639. " (if (file-is-directory? source)\n"
  1640. " (begin\n"
  1641. " (mkdir \"source\")\n"
  1642. " (chdir \"source\")\n"
  1643. "\n"
  1644. msgstr ""
  1645. "(define* (unpack #:key source #:allow-other-keys)\n"
  1646. " \"Unpack SOURCE in the working directory, and change directory within the\n"
  1647. "source. When SOURCE is a directory, copy it in a sub-directory of the current\n"
  1648. "working directory.\"\n"
  1649. " (if (file-is-directory? source)\n"
  1650. " (begin\n"
  1651. " (mkdir \"source\")\n"
  1652. " (chdir \"source\")\n"
  1653. "\n"
  1654. #. type: lisp
  1655. #: guix-git/doc/guix-cookbook.texi:1061
  1656. #, no-wrap
  1657. msgid ""
  1658. " ;; Preserve timestamps (set to the Epoch) on the copied tree so that\n"
  1659. " ;; things work deterministically.\n"
  1660. " (copy-recursively source \".\"\n"
  1661. " #:keep-mtime? #true))\n"
  1662. " (begin\n"
  1663. " (if (string-suffix? \".zip\" source)\n"
  1664. " (invoke \"unzip\" source)\n"
  1665. " (invoke \"tar\" \"xvf\" source))\n"
  1666. " (chdir (first-subdirectory \".\"))))\n"
  1667. " #true)\n"
  1668. msgstr ""
  1669. " ;; Preserve timestamps (set to the Epoch) on the copied tree so that\n"
  1670. " ;; things work deterministically.\n"
  1671. " (copy-recursively source \".\"\n"
  1672. " #:keep-mtime? #true))\n"
  1673. " (begin\n"
  1674. " (if (string-suffix? \".zip\" source)\n"
  1675. " (invoke \"unzip\" source)\n"
  1676. " (invoke \"tar\" \"xvf\" source))\n"
  1677. " (chdir (first-subdirectory \".\"))))\n"
  1678. " #true)\n"
  1679. #. type: Plain text
  1680. #: guix-git/doc/guix-cookbook.texi:1069
  1681. msgid "Note the @code{chdir} call: it changes the working directory to where the source was unpacked. Thus every phase following the @code{unpack} will use the source as a working directory, which is why we can directly work on the source files. That is to say, unless a later phase changes the working directory to something else."
  1682. msgstr "Beachten Sie den Aufruf von @code{chdir}: Damit wird das Arbeitsverzeichnis zu demjenigen gewechselt, wohin die Quelldateien entpackt wurden. In jeder Phase nach @code{unpack} dient also das Verzeichnis mit den Quelldateien als Arbeitsverzeichnis. Deswegen können wir direkt mit den Quelldateien arbeiten, zumindest solange keine spätere Phase das Arbeitsverzeichnis woandershin wechselt."
  1683. #. type: Plain text
  1684. #: guix-git/doc/guix-cookbook.texi:1073
  1685. msgid "We modify the list of @code{%standard-phases} of the build system with the @code{modify-phases} macro as per the list of specified modifications, which may have the following forms:"
  1686. msgstr "Die Liste der @code{%standard-phases} des Erstellungssystems ändern wir mit Hilfe des @code{modify-phases}-Makros über eine Liste von Änderungen. Sie kann folgende Formen haben:"
  1687. #. type: itemize
  1688. #: guix-git/doc/guix-cookbook.texi:1077
  1689. msgid "@code{(add-before @var{phase} @var{new-phase} @var{procedure})}: Run @var{procedure} named @var{new-phase} before @var{phase}."
  1690. msgstr "@code{(add-before @var{Phase} @var{neue-Phase} @var{Prozedur})}: @var{Prozedur} unter dem Namen @var{neue-Phase} vor @var{Phase} ausführen."
  1691. #. type: itemize
  1692. #: guix-git/doc/guix-cookbook.texi:1079
  1693. msgid "@code{(add-after @var{phase} @var{new-phase} @var{procedure})}: Same, but afterwards."
  1694. msgstr "@code{(add-after @var{Phase} @var{neue-Phase} @var{Prozedur})}: Genauso, aber danach."
  1695. #. type: itemize
  1696. #: guix-git/doc/guix-cookbook.texi:1081
  1697. msgid "@code{(replace @var{phase} @var{procedure})}."
  1698. msgstr "@code{(replace @var{Phase} @var{Prozedur})}."
  1699. #. type: itemize
  1700. #: guix-git/doc/guix-cookbook.texi:1083
  1701. msgid "@code{(delete @var{phase})}."
  1702. msgstr "@code{(delete @var{Phase})}."
  1703. #. type: Plain text
  1704. #: guix-git/doc/guix-cookbook.texi:1090
  1705. msgid "The @var{procedure} supports the keyword arguments @code{inputs} and @code{outputs}. Each input (whether @emph{native}, @emph{propagated} or not) and output directory is referenced by their name in those variables. Thus @code{(assoc-ref outputs \"out\")} is the store directory of the main output of the package. A phase procedure may look like this:"
  1706. msgstr "Die @var{Prozedur} unterstützt die Schlüsselwortargumente @code{inputs} und @code{outputs}. Jede Eingabe (ob sie @emph{native}, @emph{propagated} oder nichts davon ist) und jedes Ausgabeverzeichnis ist in diesen Variablen mit dem jeweiligen Namen assoziiert. @code{(assoc-ref outputs \"out\")} ist also das Store-Verzeichnis der Hauptausgabe des Pakets. Eine Phasenprozedur kann so aussehen:"
  1707. #. type: lisp
  1708. #: guix-git/doc/guix-cookbook.texi:1098
  1709. #, no-wrap
  1710. msgid ""
  1711. "(lambda* (#:key inputs outputs #:allow-other-keys)\n"
  1712. " (let ((bash-directory (assoc-ref inputs \"bash\"))\n"
  1713. " (output-directory (assoc-ref outputs \"out\"))\n"
  1714. " (doc-directory (assoc-ref outputs \"doc\")))\n"
  1715. " ;; ...\n"
  1716. " #true))\n"
  1717. msgstr ""
  1718. "(lambda* (#:key inputs outputs #:allow-other-keys)\n"
  1719. " (let ((bash-directory (assoc-ref inputs \"bash\"))\n"
  1720. " (output-directory (assoc-ref outputs \"out\"))\n"
  1721. " (doc-directory (assoc-ref outputs \"doc\")))\n"
  1722. " ;; …\n"
  1723. " #true))\n"
  1724. #. type: Plain text
  1725. #: guix-git/doc/guix-cookbook.texi:1104
  1726. msgid "The procedure must return @code{#true} on success. It's brittle to rely on the return value of the last expression used to tweak the phase because there is no guarantee it would be a @code{#true}. Hence the trailing @code{#true} to ensure the right value is returned on success."
  1727. msgstr "Die Prozedur muss bei Erfolg @code{#true} zurückliefern. Auf den Rückgabewert des letzten Ausdrucks, mit dem die Phase angepasst wurde, kann man sich nicht verlassen, weil es keine Garantie gibt, dass der Rückgabewert @code{#true} sein wird. Deswegen schreiben wir dahinter @code{#true}, damit bei erfolgreicher Ausführung der richtige Wert geliefert wird."
  1728. #. type: subsubsection
  1729. #: guix-git/doc/guix-cookbook.texi:1105
  1730. #, no-wrap
  1731. msgid "Code staging"
  1732. msgstr "Code-Staging"
  1733. #. type: Plain text
  1734. #: guix-git/doc/guix-cookbook.texi:1111
  1735. msgid "The astute reader may have noticed the quasi-quote and comma syntax in the argument field. Indeed, the build code in the package declaration should not be evaluated on the client side, but only when passed to the Guix daemon. This mechanism of passing code around two running processes is called @uref{https://arxiv.org/abs/1709.00833, code staging}."
  1736. msgstr "Aufmerksame Leser könnten die Syntax mit @code{quasiquote} und Komma im Argumentefeld bemerkt haben. Tatsächlich sollte der Erstellungscode in der Paketdeklaration @emph{nicht} auf Client-Seite ausgeführt werden, sondern erst, wenn er an den Guix-Daemon übergeben worden ist. Der Mechanismus, über den Code zwischen zwei laufenden Prozessen weitergegeben wird, nennen wir @uref{https://arxiv.org/abs/1709.00833, Code-Staging}."
  1737. #. type: subsubsection
  1738. #: guix-git/doc/guix-cookbook.texi:1112
  1739. #, no-wrap
  1740. msgid "Utility functions"
  1741. msgstr "Hilfsfunktionen"
  1742. #. type: Plain text
  1743. #: guix-git/doc/guix-cookbook.texi:1117
  1744. msgid "When customizing @code{phases}, we often need to write code that mimics the equivalent system invocations (@code{make}, @code{mkdir}, @code{cp}, etc.)@: commonly used during regular ``Unix-style'' installations."
  1745. msgstr "Beim Anpassen der @code{phases} müssen wir oft Code schreiben, der analog zu den äquivalenten Systemaufrufen funktioniert (@code{make}, @code{mkdir}, @code{cp}, etc.), welche in regulären „Unix-artigen“ Installationen oft benutzt werden."
  1746. #. type: Plain text
  1747. #: guix-git/doc/guix-cookbook.texi:1120
  1748. msgid "Some like @code{chmod} are native to Guile. @xref{,,, guile, Guile reference manual} for a complete list."
  1749. msgstr "Manche, wie @code{chmod}, sind Teil von Guile. Siehe das @ref{,,, guile, Referenzhandbuch zu Guile} für eine vollständige Liste."
  1750. #. type: Plain text
  1751. #: guix-git/doc/guix-cookbook.texi:1123
  1752. msgid "Guix provides additional helper functions which prove especially handy in the context of package management."
  1753. msgstr "Guix stellt zusätzliche Hilfsfunktionen zur Verfügung, die bei der Paketverwaltung besonders praktisch sind."
  1754. #. type: Plain text
  1755. #: guix-git/doc/guix-cookbook.texi:1127
  1756. msgid "Some of those functions can be found in @samp{$GUIX_CHECKOUT/guix/guix/build/utils.scm}. Most of them mirror the behaviour of the traditional Unix system commands:"
  1757. msgstr "Manche dieser Funktionalitäten finden Sie in @samp{$GUIX_CHECKOUT/guix/guix/build/utils.scm}. Die meisten spiegeln das Verhalten traditioneller Unix-Systembefehle wider:"
  1758. #. type: item
  1759. #: guix-git/doc/guix-cookbook.texi:1129
  1760. #, no-wrap
  1761. msgid "which"
  1762. msgstr "which"
  1763. #. type: table
  1764. #: guix-git/doc/guix-cookbook.texi:1131
  1765. msgid "Like the @samp{which} system command."
  1766. msgstr "Das Gleiche wie der @samp{which}-Systembefehl."
  1767. #. type: item
  1768. #: guix-git/doc/guix-cookbook.texi:1131
  1769. #, no-wrap
  1770. msgid "find-files"
  1771. msgstr "find-files"
  1772. #. type: table
  1773. #: guix-git/doc/guix-cookbook.texi:1133
  1774. msgid "Akin to the @samp{find} system command."
  1775. msgstr "Wie der @samp{find} Systembefehl."
  1776. #. type: item
  1777. #: guix-git/doc/guix-cookbook.texi:1133
  1778. #, no-wrap
  1779. msgid "mkdir-p"
  1780. msgstr "mkdir-p"
  1781. #. type: table
  1782. #: guix-git/doc/guix-cookbook.texi:1135
  1783. msgid "Like @samp{mkdir -p}, which creates all parents as needed."
  1784. msgstr "Wie @samp{mkdir -p}, das Elternverzeichnisse erzeugt, wenn nötig."
  1785. #. type: item
  1786. #: guix-git/doc/guix-cookbook.texi:1135
  1787. #, no-wrap
  1788. msgid "install-file"
  1789. msgstr "install-file"
  1790. #. type: table
  1791. #: guix-git/doc/guix-cookbook.texi:1139
  1792. msgid "Similar to @samp{install} when installing a file to a (possibly non-existing) directory. Guile has @code{copy-file} which works like @samp{cp}."
  1793. msgstr "Ähnlich wie @samp{install} beim Installieren einer Datei in ein (nicht unbedingt existierendes) Verzeichnis. Guile kennt @code{copy-file}, das wie @samp{cp} funktioniert."
  1794. #. type: item
  1795. #: guix-git/doc/guix-cookbook.texi:1139
  1796. #, no-wrap
  1797. msgid "copy-recursively"
  1798. msgstr "copy-recursively"
  1799. #. type: table
  1800. #: guix-git/doc/guix-cookbook.texi:1141
  1801. msgid "Like @samp{cp -r}."
  1802. msgstr "Wie @samp{cp -r}."
  1803. #. type: item
  1804. #: guix-git/doc/guix-cookbook.texi:1141
  1805. #, no-wrap
  1806. msgid "delete-file-recursively"
  1807. msgstr "delete-file-recursively"
  1808. #. type: table
  1809. #: guix-git/doc/guix-cookbook.texi:1143
  1810. msgid "Like @samp{rm -rf}."
  1811. msgstr "Wie @samp{rm -rf}."
  1812. #. type: item
  1813. #: guix-git/doc/guix-cookbook.texi:1143
  1814. #, no-wrap
  1815. msgid "invoke"
  1816. msgstr "invoke"
  1817. #. type: table
  1818. #: guix-git/doc/guix-cookbook.texi:1145
  1819. msgid "Run an executable. This should be used instead of @code{system*}."
  1820. msgstr "Eine ausführbare Datei ausführen. Man sollte es benutzen und nicht @code{system*}."
  1821. #. type: item
  1822. #: guix-git/doc/guix-cookbook.texi:1145
  1823. #, no-wrap
  1824. msgid "with-directory-excursion"
  1825. msgstr "with-directory-excursion"
  1826. #. type: table
  1827. #: guix-git/doc/guix-cookbook.texi:1148
  1828. msgid "Run the body in a different working directory, then restore the previous working directory."
  1829. msgstr "Den Rumpf in einem anderen Arbeitsverzeichnis ausführen und danach wieder in das vorherige Arbeitsverzeichnis wechseln."
  1830. #. type: item
  1831. #: guix-git/doc/guix-cookbook.texi:1148
  1832. #, no-wrap
  1833. msgid "substitute*"
  1834. msgstr "substitute*"
  1835. #. type: table
  1836. #: guix-git/doc/guix-cookbook.texi:1150
  1837. msgid "A ``@command{sed}-like'' function."
  1838. msgstr "Eine „@command{sed}-artige“ Funktion."
  1839. #. type: Plain text
  1840. #: guix-git/doc/guix-cookbook.texi:1154
  1841. msgid "@xref{Build Utilities,,, guix, GNU Guix Reference Manual}, for more information on these utilities."
  1842. msgstr "Siehe @ref{Werkzeuge zur Erstellung,,, guix.de, Referenzhandbuch zu GNU Guix} für mehr Informationen zu diesen Werkzeugen."
  1843. #. type: subsubsection
  1844. #: guix-git/doc/guix-cookbook.texi:1155
  1845. #, no-wrap
  1846. msgid "Module prefix"
  1847. msgstr "Modulpräfix"
  1848. #. type: Plain text
  1849. #: guix-git/doc/guix-cookbook.texi:1165
  1850. msgid "The license in our last example needs a prefix: this is because of how the @code{license} module was imported in the package, as @code{#:use-module ((guix licenses) #:prefix license:)}. The Guile module import mechanism (@pxref{Using Guile Modules,,, guile, Guile reference manual}) gives the user full control over namespacing: this is needed to avoid clashes between, say, the @samp{zlib} variable from @samp{licenses.scm} (a @emph{license} value) and the @samp{zlib} variable from @samp{compression.scm} (a @emph{package} value)."
  1851. msgstr "Die Lizenz in unserem letzten Beispiel braucht ein Präfix. Der Grund liegt darin, wie das @code{license}-Modul importiert worden ist, nämlich @code{#:use-module ((guix licenses) #:prefix license:)}. Der Importmechanismus von Guile-Modulen (siehe @ref{Using Guile Modules,,, guile, Referenzhandbuch zu Guile}) gibt Benutzern die volle Kontrolle über Namensräume. Man braucht sie, um Konflikte zu lösen, z.B.@ zwischen der @samp{zlib}-Variablen aus @samp{licenses.scm} (dieser Wert repräsentiert eine @emph{Softwarelizenz}) und der @samp{zlib}-Variablen aus @samp{compression.scm} (ein Wert, der für ein @emph{Paket} steht)."
  1852. #. type: subsection
  1853. #: guix-git/doc/guix-cookbook.texi:1166 guix-git/doc/guix-cookbook.texi:1167
  1854. #, no-wrap
  1855. msgid "Other build systems"
  1856. msgstr "Andere Erstellungssysteme"
  1857. #. type: Plain text
  1858. #: guix-git/doc/guix-cookbook.texi:1174
  1859. msgid "What we've seen so far covers the majority of packages using a build system other than the @code{trivial-build-system}. The latter does not automate anything and leaves you to build everything manually. This can be more demanding and we won't cover it here for now, but thankfully it is rarely necessary to fall back on this system."
  1860. msgstr "Was wir bisher gesehen haben reicht für die meisten Pakete aus, die als Erstellungssystem etwas anderes als @code{trivial-build-system} verwenden. Letzteres automatisiert gar nichts und überlässt es Ihnen, alles zur Erstellung manuell festzulegen. Das kann einen noch mehr beanspruchen und wir beschreiben es hier zurzeit nicht, aber glücklicherweise braucht man dieses System auch nur in seltenen Fällen."
  1861. #. type: Plain text
  1862. #: guix-git/doc/guix-cookbook.texi:1178
  1863. msgid "For the other build systems, such as ASDF, Emacs, Perl, Ruby and many more, the process is very similar to the GNU build system except for a few specialized arguments."
  1864. msgstr "Bei anderen Erstellungssystemen wie ASDF, Emacs, Perl, Ruby und vielen anderen ist der Prozess sehr ähnlich zum GNU-Erstellungssystem abgesehen von ein paar speziellen Argumenten."
  1865. #. type: Plain text
  1866. #: guix-git/doc/guix-cookbook.texi:1183
  1867. msgid "@xref{Build Systems,,, guix, GNU Guix Reference Manual}, for more information on build systems, or check the source code in the @samp{$GUIX_CHECKOUT/guix/build} and @samp{$GUIX_CHECKOUT/guix/build-system} directories."
  1868. msgstr "Siehe @ref{Erstellungssysteme,,, guix.de, Referenzhandbuch zu GNU Guix}, für mehr Informationen über Erstellungssysteme, oder den Quellcode in den Verzeichnissen @samp{$GUIX_CHECKOUT/guix/build} und @samp{$GUIX_CHECKOUT/guix/build-system}."
  1869. #. type: subsection
  1870. #: guix-git/doc/guix-cookbook.texi:1184 guix-git/doc/guix-cookbook.texi:1185
  1871. #, no-wrap
  1872. msgid "Programmable and automated package definition"
  1873. msgstr "Programmierbare und automatisierte Paketdefinition"
  1874. #. type: Plain text
  1875. #: guix-git/doc/guix-cookbook.texi:1189
  1876. msgid "We can't repeat it enough: having a full-fledged programming language at hand empowers us in ways that reach far beyond traditional package management."
  1877. msgstr "Wir können es nicht oft genug wiederholen: Eine Allzweck-Programmiersprache zur Hand zu haben macht Dinge möglich, die traditionelle Paketverwaltung weit übersteigen."
  1878. #. type: Plain text
  1879. #: guix-git/doc/guix-cookbook.texi:1191
  1880. msgid "Let's illustrate this with some awesome features of Guix!"
  1881. msgstr "Wir können uns das anhand Guix’ großartiger Funktionalitäten klarmachen!"
  1882. #. type: subsubsection
  1883. #: guix-git/doc/guix-cookbook.texi:1192 guix-git/doc/guix-cookbook.texi:1193
  1884. #, no-wrap
  1885. msgid "Recursive importers"
  1886. msgstr "Rekursive Importer"
  1887. #. type: Plain text
  1888. #: guix-git/doc/guix-cookbook.texi:1200
  1889. msgid "You might find some build systems good enough that there is little to do at all to write a package, to the point that it becomes repetitive and tedious after a while. A @emph{raison d'être} of computers is to replace human beings at those boring tasks. So let's tell Guix to do this for us and create the package definition of an R package from CRAN (the output is trimmed for conciseness):"
  1890. msgstr "Sie könnten feststellen, dass manche Erstellungssysteme gut genug sind und nichts weiter zu tun bleibt, um ein Paket zu verfassen. Das Paketeschreiben kann so monoton werden und man wird dessen bald überdrüssig. Eine Daseinsberechtigung von Rechnern ist, Menschen bei solch langweiligen Aufgaben zu ersetzen. Lasst uns also Guix die Sache erledigen: Wir lassen uns die Paketdefinition eines R-Pakets mit den Informationen aus CRAN holen (was zu anderen ausgegeben wird, haben wir im Folgenden weggelassen):"
  1891. #. type: example
  1892. #: guix-git/doc/guix-cookbook.texi:1203
  1893. #, no-wrap
  1894. msgid ""
  1895. "$ guix import cran --recursive walrus\n"
  1896. "\n"
  1897. msgstr ""
  1898. "$ guix import cran --recursive walrus\n"
  1899. "\n"
  1900. #. type: example
  1901. #: guix-git/doc/guix-cookbook.texi:1207
  1902. #, no-wrap
  1903. msgid ""
  1904. "(define-public r-mc2d\n"
  1905. " ; ...\n"
  1906. " (license gpl2+)))\n"
  1907. "\n"
  1908. msgstr ""
  1909. "(define-public r-mc2d\n"
  1910. " ; …\n"
  1911. " (license gpl2+)))\n"
  1912. "\n"
  1913. #. type: example
  1914. #: guix-git/doc/guix-cookbook.texi:1211
  1915. #, no-wrap
  1916. msgid ""
  1917. "(define-public r-jmvcore\n"
  1918. " ; ...\n"
  1919. " (license gpl2+)))\n"
  1920. "\n"
  1921. msgstr ""
  1922. "(define-public r-jmvcore\n"
  1923. " ; …\n"
  1924. " (license gpl2+)))\n"
  1925. "\n"
  1926. #. type: example
  1927. #: guix-git/doc/guix-cookbook.texi:1215
  1928. #, no-wrap
  1929. msgid ""
  1930. "(define-public r-wrs2\n"
  1931. " ; ...\n"
  1932. " (license gpl3)))\n"
  1933. "\n"
  1934. msgstr ""
  1935. "(define-public r-wrs2\n"
  1936. " ; …\n"
  1937. " (license gpl3)))\n"
  1938. "\n"
  1939. #. type: example
  1940. #: guix-git/doc/guix-cookbook.texi:1244
  1941. #, no-wrap
  1942. msgid ""
  1943. "(define-public r-walrus\n"
  1944. " (package\n"
  1945. " (name \"r-walrus\")\n"
  1946. " (version \"1.0.3\")\n"
  1947. " (source\n"
  1948. " (origin\n"
  1949. " (method url-fetch)\n"
  1950. " (uri (cran-uri \"walrus\" version))\n"
  1951. " (sha256\n"
  1952. " (base32\n"
  1953. " \"1nk2glcvy4hyksl5ipq2mz8jy4fss90hx6cq98m3w96kzjni6jjj\"))))\n"
  1954. " (build-system r-build-system)\n"
  1955. " (propagated-inputs\n"
  1956. " `((\"r-ggplot2\" ,r-ggplot2)\n"
  1957. " (\"r-jmvcore\" ,r-jmvcore)\n"
  1958. " (\"r-r6\" ,r-r6)\n"
  1959. " (\"r-wrs2\" ,r-wrs2)))\n"
  1960. " (home-page \"https://github.com/jamovi/walrus\")\n"
  1961. " (synopsis \"Robust Statistical Methods\")\n"
  1962. " (description\n"
  1963. " \"This package provides a toolbox of common robust statistical\n"
  1964. "tests, including robust descriptives, robust t-tests, and robust ANOVA.\n"
  1965. "It is also available as a module for 'jamovi' (see\n"
  1966. "<https://www.jamovi.org> for more information). Walrus is based on the\n"
  1967. "WRS2 package by Patrick Mair, which is in turn based on the scripts and\n"
  1968. "work of Rand Wilcox. These analyses are described in depth in the book\n"
  1969. "'Introduction to Robust Estimation & Hypothesis Testing'.\")\n"
  1970. " (license gpl3)))\n"
  1971. msgstr ""
  1972. "(define-public r-walrus\n"
  1973. " (package\n"
  1974. " (name \"r-walrus\")\n"
  1975. " (version \"1.0.3\")\n"
  1976. " (source\n"
  1977. " (origin\n"
  1978. " (method url-fetch)\n"
  1979. " (uri (cran-uri \"walrus\" version))\n"
  1980. " (sha256\n"
  1981. " (base32\n"
  1982. " \"1nk2glcvy4hyksl5ipq2mz8jy4fss90hx6cq98m3w96kzjni6jjj\"))))\n"
  1983. " (build-system r-build-system)\n"
  1984. " (propagated-inputs\n"
  1985. " `((\"r-ggplot2\" ,r-ggplot2)\n"
  1986. " (\"r-jmvcore\" ,r-jmvcore)\n"
  1987. " (\"r-r6\" ,r-r6)\n"
  1988. " (\"r-wrs2\" ,r-wrs2)))\n"
  1989. " (home-page \"https://github.com/jamovi/walrus\")\n"
  1990. " (synopsis \"Robust Statistical Methods\")\n"
  1991. " (description\n"
  1992. " \"This package provides a toolbox of common robust statistical\n"
  1993. "tests, including robust descriptives, robust t-tests, and robust ANOVA.\n"
  1994. "It is also available as a module for 'jamovi' (see\n"
  1995. "<https://www.jamovi.org> for more information). Walrus is based on the\n"
  1996. "WRS2 package by Patrick Mair, which is in turn based on the scripts and\n"
  1997. "work of Rand Wilcox. These analyses are described in depth in the book\n"
  1998. "'Introduction to Robust Estimation & Hypothesis Testing'.\")\n"
  1999. " (license gpl3)))\n"
  2000. #. type: Plain text
  2001. #: guix-git/doc/guix-cookbook.texi:1248
  2002. msgid "The recursive importer won't import packages for which Guix already has package definitions, except for the very first."
  2003. msgstr "Der rekursive Importer wird keine Pakete importieren, für die es in Guix bereits eine Paketdefinition gibt, außer dem Paket, mit dem er anfängt."
  2004. #. type: Plain text
  2005. #: guix-git/doc/guix-cookbook.texi:1253
  2006. msgid "Not all applications can be packaged this way, only those relying on a select number of supported systems. Read about the full list of importers in the guix import section of the manual (@pxref{Invoking guix import,,, guix, GNU Guix Reference Manual})."
  2007. msgstr "Nicht für alle Anwendungen können auf diesem Weg Pakete erzeugt werden, nur für jene, die auf ausgewählten Systemen aufbauen. Im Handbuch können Sie Informationen über die vollständige Liste aller Importer bekommen (siehe @ref{Aufruf von guix import,,, guix.de, Referenzhandbuch zu GNU Guix})."
  2008. #. type: subsubsection
  2009. #: guix-git/doc/guix-cookbook.texi:1254 guix-git/doc/guix-cookbook.texi:1255
  2010. #, no-wrap
  2011. msgid "Automatic update"
  2012. msgstr "Automatisch aktualisieren"
  2013. #. type: Plain text
  2014. #: guix-git/doc/guix-cookbook.texi:1259
  2015. msgid "Guix can be smart enough to check for updates on systems it knows. It can report outdated package definitions with"
  2016. msgstr "Guix ist klug genug, um verfügbare Aktualisierungen auf bekannten Systemen zu erkennen. Es kann über veraltete Paketdefinitionen Bericht erstatten, wenn man dies eingibt:"
  2017. #. type: example
  2018. #: guix-git/doc/guix-cookbook.texi:1262
  2019. #, no-wrap
  2020. msgid "$ guix refresh hello\n"
  2021. msgstr "$ guix refresh hello\n"
  2022. #. type: Plain text
  2023. #: guix-git/doc/guix-cookbook.texi:1267
  2024. msgid "In most cases, updating a package to a newer version requires little more than changing the version number and the checksum. Guix can do that automatically as well:"
  2025. msgstr "In den meisten Fällen muss man zur Aktualisierung auf eine neuere Version wenig mehr tun, als die Versionsnummer und die Prüfsumme ändern. Auch das kann mit Guix automatisiert werden:"
  2026. #. type: example
  2027. #: guix-git/doc/guix-cookbook.texi:1270
  2028. #, no-wrap
  2029. msgid "$ guix refresh hello --update\n"
  2030. msgstr "$ guix refresh hello --update\n"
  2031. #. type: subsubsection
  2032. #: guix-git/doc/guix-cookbook.texi:1272 guix-git/doc/guix-cookbook.texi:1273
  2033. #, no-wrap
  2034. msgid "Inheritance"
  2035. msgstr "Vererbung"
  2036. #. type: Plain text
  2037. #: guix-git/doc/guix-cookbook.texi:1277
  2038. msgid "If you've started browsing the existing package definitions, you might have noticed that a significant number of them have a @code{inherit} field:"
  2039. msgstr "Wenn Sie anfangen, bestehende Paketdefinitionen anzuschauen, könnte es Ihnen auffallen, dass viele von ihnen über ein @code{inherit}-Feld verfügen."
  2040. #. type: lisp
  2041. #: guix-git/doc/guix-cookbook.texi:1293
  2042. #, no-wrap
  2043. msgid ""
  2044. "(define-public adwaita-icon-theme\n"
  2045. " (package (inherit gnome-icon-theme)\n"
  2046. " (name \"adwaita-icon-theme\")\n"
  2047. " (version \"3.26.1\")\n"
  2048. " (source (origin\n"
  2049. " (method url-fetch)\n"
  2050. " (uri (string-append \"mirror://gnome/sources/\" name \"/\"\n"
  2051. " (version-major+minor version) \"/\"\n"
  2052. " name \"-\" version \".tar.xz\"))\n"
  2053. " (sha256\n"
  2054. " (base32\n"
  2055. " \"17fpahgh5dyckgz7rwqvzgnhx53cx9kr2xw0szprc6bnqy977fi8\"))))\n"
  2056. " (native-inputs\n"
  2057. " `((\"gtk-encode-symbolic-svg\" ,gtk+ \"bin\")))))\n"
  2058. msgstr ""
  2059. "(define-public adwaita-icon-theme\n"
  2060. " (package (inherit gnome-icon-theme)\n"
  2061. " (name \"adwaita-icon-theme\")\n"
  2062. " (version \"3.26.1\")\n"
  2063. " (source (origin\n"
  2064. " (method url-fetch)\n"
  2065. " (uri (string-append \"mirror://gnome/sources/\" name \"/\"\n"
  2066. " (version-major+minor version) \"/\"\n"
  2067. " name \"-\" version \".tar.xz\"))\n"
  2068. " (sha256\n"
  2069. " (base32\n"
  2070. " \"17fpahgh5dyckgz7rwqvzgnhx53cx9kr2xw0szprc6bnqy977fi8\"))))\n"
  2071. " (native-inputs\n"
  2072. " `((\"gtk-encode-symbolic-svg\" ,gtk+ \"bin\")))))\n"
  2073. #. type: Plain text
  2074. #: guix-git/doc/guix-cookbook.texi:1298
  2075. msgid "All unspecified fields are inherited from the parent package. This is very convenient to create alternative packages, for instance with different source, version or compilation options."
  2076. msgstr "Alle @emph{nicht} aufgeführten Felder werden vom Elternpaket geerbt. Das ist ziemlich praktisch, um alternative Pakete zu erzeugen, zum Beispiel solche mit geänderten Quellorten, Versionen oder Kompilierungsoptionen."
  2077. #. type: subsection
  2078. #: guix-git/doc/guix-cookbook.texi:1299 guix-git/doc/guix-cookbook.texi:1300
  2079. #, no-wrap
  2080. msgid "Getting help"
  2081. msgstr "Hilfe bekommen"
  2082. #. type: Plain text
  2083. #: guix-git/doc/guix-cookbook.texi:1306
  2084. msgid "Sadly, some applications can be tough to package. Sometimes they need a patch to work with the non-standard file system hierarchy enforced by the store. Sometimes the tests won't run properly. (They can be skipped but this is not recommended.) Other times the resulting package won't be reproducible."
  2085. msgstr "Leider ist es für manche Anwendungen schwierig, Pakete zu schreiben. Manchmal brauchen sie einen Patch, um mit vom Standard abweichenden Dateisystemhierarchien klarzukommen, wie sie der Store erforderlich macht. Manchmal funktionieren die Tests nicht richtig. (Man kann sie überspringen, aber man sollte nicht.) Ein andermal ist das sich ergebende Paket nicht reproduzierbar."
  2086. #. type: Plain text
  2087. #: guix-git/doc/guix-cookbook.texi:1309
  2088. msgid "Should you be stuck, unable to figure out how to fix any sort of packaging issue, don't hesitate to ask the community for help."
  2089. msgstr "Wenn Sie nicht weiterkommen, weil Sie nicht wissen, wie Sie ein Problem beim Paketschreiben lösen können, dann zögern Sie nicht, die Gemeinde um Hilfe zu bitten."
  2090. #. type: Plain text
  2091. #: guix-git/doc/guix-cookbook.texi:1311
  2092. msgid "See the @uref{https://www.gnu.org/software/guix/contact/, Guix homepage} for information on the mailing lists, IRC, etc."
  2093. msgstr "Siehe die @uref{https://www.gnu.org/software/guix/contact/, Homepage von Guix} für Informationen, welche Mailing-Listen, IRC-Kanäle etc.@: bereitstehen."
  2094. #. type: subsection
  2095. #: guix-git/doc/guix-cookbook.texi:1312 guix-git/doc/guix-cookbook.texi:1313
  2096. #, no-wrap
  2097. msgid "Conclusion"
  2098. msgstr "Schlusswort"
  2099. #. type: Plain text
  2100. #: guix-git/doc/guix-cookbook.texi:1319
  2101. msgid "This tutorial was a showcase of the sophisticated package management that Guix boasts. At this point we have mostly restricted this introduction to the @code{gnu-build-system} which is a core abstraction layer on which more advanced abstractions are based."
  2102. msgstr "Diese Anleitung hat einen Überblick über die fortgeschrittene Paketverwaltung gegeben, die Guix vorweist. Zu diesem Zeitpunkt haben wir diese Einführung größtenteils auf das @code{gnu-build-system} eingeschränkt, was eine zentrale Abstraktionsschicht darstellt, auf der weitere Abstraktionen aufbauen."
  2103. #. type: Plain text
  2104. #: guix-git/doc/guix-cookbook.texi:1324
  2105. msgid "Where do we go from here? Next we ought to dissect the innards of the build system by removing all abstractions, using the @code{trivial-build-system}: this should give us a thorough understanding of the process before investigating some more advanced packaging techniques and edge cases."
  2106. msgstr "Wie geht es nun weiter? Als Nächstes müssten wir das Erstellungssystem in seine Bestandteile zerlegen, um einen Einblick ganz ohne Abstraktionen zu bekommen. Das bedeutet, wir müssten das @code{trivial-build-system} analysieren. Dadurch sollte ein gründliches Verständnis des Prozesses vermittelt werden, bevor wir höher entwickelte Paketierungstechniken und Randfälle untersuchen."
  2107. #. type: Plain text
  2108. #: guix-git/doc/guix-cookbook.texi:1327
  2109. msgid "Other features worth exploring are the interactive editing and debugging capabilities of Guix provided by the Guile REPL@."
  2110. msgstr "Andere Funktionalitäten, die es wert sind, erkundet zu werden, sind Guix’ Funktionalitäten zum interaktiven Editieren und zur Fehlersuche, die die REPL von Guile darbietet."
  2111. #. type: Plain text
  2112. #: guix-git/doc/guix-cookbook.texi:1332
  2113. msgid "Those fancy features are completely optional and can wait; now is a good time to take a well-deserved break. With what we've introduced here you should be well armed to package lots of programs. You can get started right away and hopefully we will see your contributions soon!"
  2114. msgstr "Diese eindrucksvollen Funktionalitäten sind völlig optional und können warten; jetzt ist die Zeit für eine wohlverdiente Pause. Mit dem Wissen, in das wir hier eingeführt haben, sollten Sie für das Paketieren vieler Programme gut gerüstet sein. Sie können gleich anfangen und hoffentlich bekommen wir bald Ihre Beiträge zu sehen!"
  2115. #. type: subsection
  2116. #: guix-git/doc/guix-cookbook.texi:1333 guix-git/doc/guix-cookbook.texi:1334
  2117. #, no-wrap
  2118. msgid "References"
  2119. msgstr "Literaturverzeichnis"
  2120. #. type: itemize
  2121. #: guix-git/doc/guix-cookbook.texi:1339
  2122. msgid "The @uref{https://www.gnu.org/software/guix/manual/en/html_node/Defining-Packages.html, package reference in the manual}"
  2123. msgstr "Die @uref{https://guix.gnu.org/manual/de/html_node/Pakete-definieren.html, Paketreferenz im Handbuch}"
  2124. #. type: itemize
  2125. #: guix-git/doc/guix-cookbook.texi:1342
  2126. msgid "@uref{https://gitlab.com/pjotrp/guix-notes/blob/master/HACKING.org, Pjotr’s hacking guide to GNU Guix}"
  2127. msgstr "@uref{https://gitlab.com/pjotrp/guix-notes/blob/master/HACKING.org, Pjotr’s Hacking-Leitfaden für GNU Guix}"
  2128. #. type: itemize
  2129. #: guix-git/doc/guix-cookbook.texi:1345
  2130. msgid "@uref{https://www.gnu.org/software/guix/guix-ghm-andreas-20130823.pdf, ``GNU Guix: Package without a scheme!''}, by Andreas Enge"
  2131. msgstr "@uref{https://www.gnu.org/software/guix/guix-ghm-andreas-20130823.pdf, „GNU Guix: Package without a scheme!“} von Andreas Enge"
  2132. #. type: Plain text
  2133. #: guix-git/doc/guix-cookbook.texi:1354
  2134. msgid "Guix offers a flexible language for declaratively configuring your Guix System. This flexibility can at times be overwhelming. The purpose of this chapter is to demonstrate some advanced configuration concepts."
  2135. msgstr "Guix stellt eine flexible Sprache bereit, um Ihr „Guix System“ auf deklarative Weise zu konfigurieren. Diese Flexibilität kann einen manchmal überwältigen. Dieses Kapitel hat den Zweck, einige fortgeschrittene Konfigurationskonzepte vorzuzeigen."
  2136. #. type: Plain text
  2137. #: guix-git/doc/guix-cookbook.texi:1357
  2138. msgid "@pxref{System Configuration,,, guix, GNU Guix Reference Manual} for a complete reference."
  2139. msgstr "Siehe @ref{Systemkonfiguration,,, guix.de, Referenzhandbuch zu GNU Guix} für eine vollständige Referenz."
  2140. #. type: section
  2141. #: guix-git/doc/guix-cookbook.texi:1368 guix-git/doc/guix-cookbook.texi:1655
  2142. #: guix-git/doc/guix-cookbook.texi:1656
  2143. #, no-wrap
  2144. msgid "Guix System Image API"
  2145. msgstr "Die Image-Schnittstelle von Guix System"
  2146. #. type: menuentry
  2147. #: guix-git/doc/guix-cookbook.texi:1368
  2148. msgid "Customizing images to target specific platforms."
  2149. msgstr "Abbilder für bestimmte Plattformen anpassen."
  2150. #. type: section
  2151. #: guix-git/doc/guix-cookbook.texi:1368 guix-git/doc/guix-cookbook.texi:1866
  2152. #: guix-git/doc/guix-cookbook.texi:1867
  2153. #, no-wrap
  2154. msgid "Connecting to Wireguard VPN"
  2155. msgstr "Verbinden mit Wireguard VPN"
  2156. #. type: menuentry
  2157. #: guix-git/doc/guix-cookbook.texi:1368
  2158. msgid "Connecting to a Wireguard VPN."
  2159. msgstr "Wie man sich mit einem Wireguard-VPN verbindet."
  2160. #. type: section
  2161. #: guix-git/doc/guix-cookbook.texi:1368 guix-git/doc/guix-cookbook.texi:1943
  2162. #: guix-git/doc/guix-cookbook.texi:1944
  2163. #, no-wrap
  2164. msgid "Customizing a Window Manager"
  2165. msgstr "Fensterverwalter (Window Manager) anpassen"
  2166. #. type: menuentry
  2167. #: guix-git/doc/guix-cookbook.texi:1368
  2168. msgid "Handle customization of a Window manager on Guix System."
  2169. msgstr "Wie man einen Fensterverwalter auf Guix System anpassen kann."
  2170. #. type: section
  2171. #: guix-git/doc/guix-cookbook.texi:1368 guix-git/doc/guix-cookbook.texi:2034
  2172. #: guix-git/doc/guix-cookbook.texi:2035
  2173. #, no-wrap
  2174. msgid "Running Guix on a Linode Server"
  2175. msgstr "Guix auf einem Linode-Server nutzen"
  2176. #. type: section
  2177. #: guix-git/doc/guix-cookbook.texi:1368 guix-git/doc/guix-cookbook.texi:2277
  2178. #: guix-git/doc/guix-cookbook.texi:2278
  2179. #, no-wrap
  2180. msgid "Setting up a bind mount"
  2181. msgstr "Bind-Mounts anlegen"
  2182. #. type: menuentry
  2183. #: guix-git/doc/guix-cookbook.texi:1368
  2184. msgid "Setting up a bind mount in the file-systems definition."
  2185. msgstr "Bind-Mounts als Dateisystemdefinition einrichten."
  2186. #. type: section
  2187. #: guix-git/doc/guix-cookbook.texi:1368 guix-git/doc/guix-cookbook.texi:2326
  2188. #: guix-git/doc/guix-cookbook.texi:2327
  2189. #, no-wrap
  2190. msgid "Getting substitutes from Tor"
  2191. msgstr "Substitute über Tor beziehen"
  2192. #. type: menuentry
  2193. #: guix-git/doc/guix-cookbook.texi:1368
  2194. msgid "Configuring Guix daemon to get substitutes through Tor."
  2195. msgstr "Den Guix-Daemon konfigurieren, damit er Substitute über Tor lädt."
  2196. #. type: section
  2197. #: guix-git/doc/guix-cookbook.texi:1368 guix-git/doc/guix-cookbook.texi:2388
  2198. #: guix-git/doc/guix-cookbook.texi:2389
  2199. #, no-wrap
  2200. msgid "Setting up NGINX with Lua"
  2201. msgstr "NGINX mit Lua konfigurieren"
  2202. #. type: menuentry
  2203. #: guix-git/doc/guix-cookbook.texi:1368
  2204. msgid "Configuring NGINX web-server to load Lua modules."
  2205. msgstr "Den NGINX-Web-Server so einrichten, dass Lua-Module geladen werden."
  2206. #. type: Plain text
  2207. #: guix-git/doc/guix-cookbook.texi:1380
  2208. msgid "While the Guix manual explains auto-login one user to @emph{all} TTYs ( @pxref{auto-login to TTY,,, guix, GNU Guix Reference Manual}), some might prefer a situation, in which one user is logged into one TTY with the other TTYs either configured to login different users or no one at all. Note that one can auto-login one user to any TTY, but it is usually advisable to avoid @code{tty1}, which, by default, is used to log warnings and errors."
  2209. msgstr "Im Guix-Handbuch wird erklärt, wie man ein Benutzerkonto automatisch auf @emph{allen} TTYs anmelden lassen kann (@pxref{auto-login to TTY,,, guix.de, Referenzhandbuch zu GNU Guix}), aber vielleicht wäre es Ihnen lieber, ein Benutzerkonto an genau einem TTY anzumelden und die anderen TTYs so zu konfigurieren, dass entweder andere Benutzer oder gar niemand angemeldet wird. Beachten Sie, dass man auf jedem TTY automatisch jemanden anmelden kann, aber meistens will man @code{tty1} in Ruhe lassen, weil dorthin nach Voreinstellung Warnungs- und Fehlerprotokolle ausgegeben werden."
  2210. #. type: Plain text
  2211. #: guix-git/doc/guix-cookbook.texi:1382
  2212. msgid "Here is how one might set up auto login for one user to one tty:"
  2213. msgstr "Um eine Benutzerin auf einem einzelnen TTY automatisch anzumelden, schreibt man:"
  2214. #. type: lisp
  2215. #: guix-git/doc/guix-cookbook.texi:1390
  2216. #, no-wrap
  2217. msgid ""
  2218. "(define (auto-login-to-tty config tty user)\n"
  2219. " (if (string=? tty (mingetty-configuration-tty config))\n"
  2220. " (mingetty-configuration\n"
  2221. " (inherit config)\n"
  2222. " (auto-login user))\n"
  2223. " config))\n"
  2224. "\n"
  2225. msgstr ""
  2226. "(define (auto-login-to-tty config tty user)\n"
  2227. " (if (string=? tty (mingetty-configuration-tty config))\n"
  2228. " (mingetty-configuration\n"
  2229. " (inherit config)\n"
  2230. " (auto-login user))\n"
  2231. " config))\n"
  2232. "\n"
  2233. #. type: lisp
  2234. #: guix-git/doc/guix-cookbook.texi:1397
  2235. #, no-wrap
  2236. msgid ""
  2237. "(define %my-services\n"
  2238. " (modify-services %base-services\n"
  2239. " ;; @dots{}\n"
  2240. " (mingetty-service-type config =>\n"
  2241. " (auto-login-to-tty\n"
  2242. " config \"tty3\" \"alice\"))))\n"
  2243. "\n"
  2244. msgstr ""
  2245. "(define %my-services\n"
  2246. " (modify-services %base-services\n"
  2247. " ;; …\n"
  2248. " (mingetty-service-type config =>\n"
  2249. " (auto-login-to-tty\n"
  2250. " config \"tty3\" \"alice\"))))\n"
  2251. "\n"
  2252. #. type: lisp
  2253. #: guix-git/doc/guix-cookbook.texi:1401
  2254. #, no-wrap
  2255. msgid ""
  2256. "(operating-system\n"
  2257. " ;; @dots{}\n"
  2258. " (services %my-services))\n"
  2259. msgstr ""
  2260. "(operating-system\n"
  2261. " ;; …\n"
  2262. " (services %my-services))\n"
  2263. #. type: Plain text
  2264. #: guix-git/doc/guix-cookbook.texi:1406
  2265. msgid "One could also @code{compose} (@pxref{Higher-Order Functions,,, guile, The Guile Reference Manual}) @code{auto-login-to-tty} to login multiple users to multiple ttys."
  2266. msgstr "Mit Hilfe von @code{compose} (siehe @ref{Higher-Order Functions,,, guile, das Referenzhandbuch zu GNU Guile}) kann man etwas wie @code{auto-login-to-tty} mehrfach angeben, um mehrere Nutzerkonten auf verschiedenen TTYs anzumelden."
  2267. #. type: Plain text
  2268. #: guix-git/doc/guix-cookbook.texi:1413
  2269. msgid "Finally, here is a note of caution. Setting up auto login to a TTY, means that anyone can turn on your computer and run commands as your regular user. However, if you have an encrypted root partition, and thus already need to enter a passphrase when the system boots, auto-login might be a convenient option."
  2270. msgstr "Zum Schluss aber noch eine Warnung. Wenn Sie jemanden auf einem TTY automatisch anmelden lassen, kann jeder einfach Ihren Rechner anschalten und dann Befehle in deren Namen ausführen. Haben Sie Ihr Wurzeldateisystem auf einer verschlüsselten Partition, müsste man dafür erst einmal das Passwort eingeben, wenn das System startet. Dann wäre automatisches Anmelden vielleicht bequem."
  2271. #. type: Plain text
  2272. #: guix-git/doc/guix-cookbook.texi:1425
  2273. msgid "Guix is, at its core, a source based distribution with substitutes (@pxref{Substitutes,,, guix, GNU Guix Reference Manual}), and as such building packages from their source code is an expected part of regular package installations and upgrades. Given this starting point, it makes sense that efforts are made to reduce the amount of time spent compiling packages, and recent changes and upgrades to the building and distribution of substitutes continues to be a topic of discussion within Guix."
  2274. msgstr "Im Kern ist Guix eine quellcodebasierte Distribution mit Substituten (siehe @ref{Substitute,,, guix.de, Referenzhandbuch zu GNU Guix}), daher ist das Erstellen von Paketen aus ihrem Quellcode heraus genauso vorgesehen wie die normale Installation und Aktualisierung von Paketen. Von diesem Standpunkt ist es sinnvoll, zu versuchen, den Zeitaufwand für das Kompilieren von Paketen zu senken, und kürzliche Neuerungen sowie Verbesserungen beim Erstellen und Verteilen von Substituten bleiben ein Diskussionsthema innerhalb von Guix."
  2275. #. type: Plain text
  2276. #: guix-git/doc/guix-cookbook.texi:1431
  2277. msgid "The kernel, while not requiring an overabundance of RAM to build, does take a rather long time on an average machine. The official kernel configuration, as is the case with many GNU/Linux distributions, errs on the side of inclusiveness, and this is really what causes the build to take such a long time when the kernel is built from source."
  2278. msgstr "Der Kernel braucht zwar keine übermäßigen Mengen an Arbeitsspeicher beim Erstellen, jedoch jede Menge Zeit auf einer durchschnittlichen Maschine. Die offizielle Konfiguration des Kernels umfasst, wie bei anderen GNU/Linux-Distributionen auch, besser zu viel als zu wenig. Das ist der eigentliche Grund, warum seine Erstellung so lange dauert, wenn man den Kernel aus dem Quellcode heraus erstellt."
  2279. #. type: Plain text
  2280. #: guix-git/doc/guix-cookbook.texi:1436
  2281. msgid "The Linux kernel, however, can also just be described as a regular old package, and as such can be customized just like any other package. The procedure is a little bit different, although this is primarily due to the nature of how the package definition is written."
  2282. msgstr "Man kann den Linux-Kernel jedoch auch als ganz normales Paket beschreiben, das genau wie jedes andere Paket angepasst werden kann. Der Vorgang ist ein klein wenig anders, aber das liegt hauptsächlich an der Art, wie die Paketdefinition geschrieben ist."
  2283. #. type: Plain text
  2284. #: guix-git/doc/guix-cookbook.texi:1439
  2285. msgid "The @code{linux-libre} kernel package definition is actually a procedure which creates a package."
  2286. msgstr "Die @code{linux-libre}-Kernelpaketdefinition ist tatsächlich eine Prozedur, die ein Paket liefert."
  2287. #. type: lisp
  2288. #: guix-git/doc/guix-cookbook.texi:1451
  2289. #, no-wrap
  2290. msgid ""
  2291. "(define* (make-linux-libre version hash supported-systems\n"
  2292. " #:key\n"
  2293. " ;; A function that takes an arch and a variant.\n"
  2294. " ;; See kernel-config for an example.\n"
  2295. " (extra-version #false)\n"
  2296. " (configuration-file #false)\n"
  2297. " (defconfig \"defconfig\")\n"
  2298. " (extra-options %default-extra-linux-options)\n"
  2299. " (patches (list %boot-logo-patch)))\n"
  2300. " ...)\n"
  2301. msgstr ""
  2302. "(define* (make-linux-libre version hash supported-systems\n"
  2303. " #:key\n"
  2304. " ;; A function that takes an arch and a variant.\n"
  2305. " ;; See kernel-config for an example.\n"
  2306. " (extra-version #false)\n"
  2307. " (configuration-file #false)\n"
  2308. " (defconfig \"defconfig\")\n"
  2309. " (extra-options %default-extra-linux-options)\n"
  2310. " (patches (list %boot-logo-patch)))\n"
  2311. " ...)\n"
  2312. #. type: Plain text
  2313. #: guix-git/doc/guix-cookbook.texi:1455
  2314. msgid "The current @code{linux-libre} package is for the 5.1.x series, and is declared like this:"
  2315. msgstr "Das momentane @code{linux-libre}-Paket zielt ab auf die 5.1.x-Serie und ist wie folgt deklariert:"
  2316. #. type: lisp
  2317. #: guix-git/doc/guix-cookbook.texi:1463
  2318. #, no-wrap
  2319. msgid ""
  2320. "(define-public linux-libre\n"
  2321. " (make-linux-libre %linux-libre-version\n"
  2322. " %linux-libre-hash\n"
  2323. " '(\"x86_64-linux\" \"i686-linux\" \"armhf-linux\" \"aarch64-linux\")\n"
  2324. " #:patches %linux-libre-5.1-patches\n"
  2325. " #:configuration-file kernel-config))\n"
  2326. msgstr ""
  2327. "(define-public linux-libre\n"
  2328. " (make-linux-libre %linux-libre-version\n"
  2329. " %linux-libre-hash\n"
  2330. " '(\"x86_64-linux\" \"i686-linux\" \"armhf-linux\" \"aarch64-linux\")\n"
  2331. " #:patches %linux-libre-5.1-patches\n"
  2332. " #:configuration-file kernel-config))\n"
  2333. #. type: Plain text
  2334. #: guix-git/doc/guix-cookbook.texi:1472
  2335. msgid "Any keys which are not assigned values inherit their default value from the @code{make-linux-libre} definition. When comparing the two snippets above, you may notice that the code comment in the first doesn't actually refer to the @code{#:extra-version} keyword; it is actually for @code{#:configuration-file}. Because of this, it is not actually easy to include a custom kernel configuration from the definition, but don't worry, there are other ways to work with what we do have."
  2336. msgstr "Alle Schlüssel, denen kein Wert zugewiesen wird, erben ihren Vorgabewert von der Definition von @code{make-linux-libre}. Wenn Sie die beiden Schnipsel oben vergleichen, könnte Ihnen auffallen, dass sich der Code-Kommentar in ersterem tatsächlich @emph{nicht} auf das @code{#:extra-version}-Schlüsselwort bezieht, sondern auf @code{#:configuration-file}. Deswegen ist es nicht so leicht, aus der Definition heraus eine eigene Kernel-Konfiguration anhand der Definition zu schreiben, aber keine Sorge, es gibt andere Möglichkeiten, um mit dem zu arbeiten, was uns gegeben wurde."
  2337. #. type: Plain text
  2338. #: guix-git/doc/guix-cookbook.texi:1478
  2339. msgid "There are two ways to create a kernel with a custom kernel configuration. The first is to provide a standard @file{.config} file during the build process by including an actual @file{.config} file as a native input to our custom kernel. The following is a snippet from the custom @code{'configure} phase of the @code{make-linux-libre} package definition:"
  2340. msgstr "Es gibt zwei Möglichkeiten, einen Kernel mit eigener Kernel-Konfiguration zu erzeugen. Die erste ist, eine normale @file{.config}-Datei als native Eingabe zu unserem angepassten Kernel hinzuzufügen. Im Folgenden sehen Sie ein Schnipsel aus der angepassten @code{'configure}-Phase der @code{make-linux-libre}-Paketdefinition:"
  2341. #. type: lisp
  2342. #: guix-git/doc/guix-cookbook.texi:1482
  2343. #, no-wrap
  2344. msgid ""
  2345. "(let ((build (assoc-ref %standard-phases 'build))\n"
  2346. " (config (assoc-ref (or native-inputs inputs) \"kconfig\")))\n"
  2347. "\n"
  2348. msgstr ""
  2349. "(let ((build (assoc-ref %standard-phases 'build))\n"
  2350. " (config (assoc-ref (or native-inputs inputs) \"kconfig\")))\n"
  2351. "\n"
  2352. #. type: lisp
  2353. #: guix-git/doc/guix-cookbook.texi:1490
  2354. #, no-wrap
  2355. msgid ""
  2356. " ;; Use a custom kernel configuration file or a default\n"
  2357. " ;; configuration file.\n"
  2358. " (if config\n"
  2359. " (begin\n"
  2360. " (copy-file config \".config\")\n"
  2361. " (chmod \".config\" #o666))\n"
  2362. " (invoke \"make\" ,defconfig)))\n"
  2363. msgstr ""
  2364. " ;; Use a custom kernel configuration file or a default\n"
  2365. " ;; configuration file.\n"
  2366. " (if config\n"
  2367. " (begin\n"
  2368. " (copy-file config \".config\")\n"
  2369. " (chmod \".config\" #o666))\n"
  2370. " (invoke \"make\" ,defconfig)))\n"
  2371. #. type: Plain text
  2372. #: guix-git/doc/guix-cookbook.texi:1495
  2373. msgid "Below is a sample kernel package. The @code{linux-libre} package is nothing special and can be inherited from and have its fields overridden like any other package:"
  2374. msgstr "Nun folgt ein Beispiel-Kernel-Paket. Das @code{linux-libre}-Paket ist nicht anders als andere Pakete und man kann von ihm erben und seine Felder ersetzen wie bei jedem anderen Paket."
  2375. #. type: lisp
  2376. #: guix-git/doc/guix-cookbook.texi:1504
  2377. #, no-wrap
  2378. msgid ""
  2379. "(define-public linux-libre/E2140\n"
  2380. " (package\n"
  2381. " (inherit linux-libre)\n"
  2382. " (native-inputs\n"
  2383. " `((\"kconfig\" ,(local-file \"E2140.config\"))\n"
  2384. " ,@@(alist-delete \"kconfig\"\n"
  2385. " (package-native-inputs linux-libre))))))\n"
  2386. msgstr ""
  2387. "(define-public linux-libre/E2140\n"
  2388. " (package\n"
  2389. " (inherit linux-libre)\n"
  2390. " (native-inputs\n"
  2391. " `((\"kconfig\" ,(local-file \"E2140.config\"))\n"
  2392. " ,@@(alist-delete \"kconfig\"\n"
  2393. " (package-native-inputs linux-libre))))))\n"
  2394. #. type: Plain text
  2395. #: guix-git/doc/guix-cookbook.texi:1511
  2396. msgid "In the same directory as the file defining @code{linux-libre-E2140} is a file named @file{E2140.config}, which is an actual kernel configuration file. The @code{defconfig} keyword of @code{make-linux-libre} is left blank here, so the only kernel configuration in the package is the one which was included in the @code{native-inputs} field."
  2397. msgstr "Im selben Verzeichnis wie die Datei, die @code{linux-libre-E2140} definiert, befindet sich noch eine Datei namens @file{E2140.config}, bei der es sich um eine richtige Kernel-Konfigurationsdatei handelt. Das Schlüsselwort @code{defconfig} von @code{make-linux-libre} wird hier leer gelassen, so dass die einzige Kernel-Konfiguration im Paket die im @code{native-inputs}-Feld ist."
  2398. #. type: Plain text
  2399. #: guix-git/doc/guix-cookbook.texi:1516
  2400. msgid "The second way to create a custom kernel is to pass a new value to the @code{extra-options} keyword of the @code{make-linux-libre} procedure. The @code{extra-options} keyword works with another function defined right below it:"
  2401. msgstr "Die zweite Möglichkeit, einen eigenen Kernel zu erzeugen, ist, einen neuen Wert an das @code{extra-options}-Schlüsselwort der @code{make-linux-libre}-Prozedur zu übergeben. Das @code{extra-options}-Schlüsselwort wird zusammen mit einer anderen, direkt darunter definierten Funktion benutzt:"
  2402. #. type: lisp
  2403. #: guix-git/doc/guix-cookbook.texi:1532
  2404. #, no-wrap
  2405. msgid ""
  2406. "(define %default-extra-linux-options\n"
  2407. " `(;; https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00039.html\n"
  2408. " (\"CONFIG_DEVPTS_MULTIPLE_INSTANCES\" . #true)\n"
  2409. " ;; Modules required for initrd:\n"
  2410. " (\"CONFIG_NET_9P\" . m)\n"
  2411. " (\"CONFIG_NET_9P_VIRTIO\" . m)\n"
  2412. " (\"CONFIG_VIRTIO_BLK\" . m)\n"
  2413. " (\"CONFIG_VIRTIO_NET\" . m)\n"
  2414. " (\"CONFIG_VIRTIO_PCI\" . m)\n"
  2415. " (\"CONFIG_VIRTIO_BALLOON\" . m)\n"
  2416. " (\"CONFIG_VIRTIO_MMIO\" . m)\n"
  2417. " (\"CONFIG_FUSE_FS\" . m)\n"
  2418. " (\"CONFIG_CIFS\" . m)\n"
  2419. " (\"CONFIG_9P_FS\" . m)))\n"
  2420. "\n"
  2421. msgstr ""
  2422. "(define %default-extra-linux-options\n"
  2423. " `(;; https://lists.gnu.org/archive/html/guix-devel/2014-04/msg00039.html\n"
  2424. " (\"CONFIG_DEVPTS_MULTIPLE_INSTANCES\" . #true)\n"
  2425. " ;; Modules required for initrd:\n"
  2426. " (\"CONFIG_NET_9P\" . m)\n"
  2427. " (\"CONFIG_NET_9P_VIRTIO\" . m)\n"
  2428. " (\"CONFIG_VIRTIO_BLK\" . m)\n"
  2429. " (\"CONFIG_VIRTIO_NET\" . m)\n"
  2430. " (\"CONFIG_VIRTIO_PCI\" . m)\n"
  2431. " (\"CONFIG_VIRTIO_BALLOON\" . m)\n"
  2432. " (\"CONFIG_VIRTIO_MMIO\" . m)\n"
  2433. " (\"CONFIG_FUSE_FS\" . m)\n"
  2434. " (\"CONFIG_CIFS\" . m)\n"
  2435. " (\"CONFIG_9P_FS\" . m)))\n"
  2436. "\n"
  2437. #. type: lisp
  2438. #: guix-git/doc/guix-cookbook.texi:1543
  2439. #, no-wrap
  2440. msgid ""
  2441. "(define (config->string options)\n"
  2442. " (string-join (map (match-lambda\n"
  2443. " ((option . 'm)\n"
  2444. " (string-append option \"=m\"))\n"
  2445. " ((option . #true)\n"
  2446. " (string-append option \"=y\"))\n"
  2447. " ((option . #false)\n"
  2448. " (string-append option \"=n\")))\n"
  2449. " options)\n"
  2450. " \"\\n\"))\n"
  2451. msgstr ""
  2452. "(define (config->string options)\n"
  2453. " (string-join (map (match-lambda\n"
  2454. " ((option . 'm)\n"
  2455. " (string-append option \"=m\"))\n"
  2456. " ((option . #true)\n"
  2457. " (string-append option \"=y\"))\n"
  2458. " ((option . #false)\n"
  2459. " (string-append option \"=n\")))\n"
  2460. " options)\n"
  2461. " \"\\n\"))\n"
  2462. #. type: Plain text
  2463. #: guix-git/doc/guix-cookbook.texi:1546
  2464. msgid "And in the custom configure script from the `make-linux-libre` package:"
  2465. msgstr "Und im eigenen configure-Skript des „make-linux-libre“-Pakets:"
  2466. #. type: lisp
  2467. #: guix-git/doc/guix-cookbook.texi:1554
  2468. #, no-wrap
  2469. msgid ""
  2470. ";; Appending works even when the option wasn't in the\n"
  2471. ";; file. The last one prevails if duplicated.\n"
  2472. "(let ((port (open-file \".config\" \"a\"))\n"
  2473. " (extra-configuration ,(config->string extra-options)))\n"
  2474. " (display extra-configuration port)\n"
  2475. " (close-port port))\n"
  2476. "\n"
  2477. msgstr ""
  2478. ";; Appending works even when the option wasn't in the\n"
  2479. ";; file. The last one prevails if duplicated.\n"
  2480. "(let ((port (open-file \".config\" \"a\"))\n"
  2481. " (extra-configuration ,(config->string extra-options)))\n"
  2482. " (display extra-configuration port)\n"
  2483. " (close-port port))\n"
  2484. "\n"
  2485. #. type: lisp
  2486. #: guix-git/doc/guix-cookbook.texi:1556
  2487. #, no-wrap
  2488. msgid "(invoke \"make\" \"oldconfig\")\n"
  2489. msgstr "(invoke \"make\" \"oldconfig\")\n"
  2490. #. type: Plain text
  2491. #: guix-git/doc/guix-cookbook.texi:1561
  2492. msgid "So by not providing a configuration-file the @file{.config} starts blank, and then we write into it the collection of flags that we want. Here's another custom kernel:"
  2493. msgstr "Indem wir also kein „configuration-file“ mitgeben, ist @file{.config} anfangs leer und danach schreiben wir dort die Sammlung der gewünschten Optionen („Flags“) hinein. Hier ist noch ein eigener Kernel:"
  2494. #. type: lisp
  2495. #: guix-git/doc/guix-cookbook.texi:1569
  2496. #, no-wrap
  2497. msgid ""
  2498. "(define %macbook41-full-config\n"
  2499. " (append %macbook41-config-options\n"
  2500. " %file-systems\n"
  2501. " %efi-support\n"
  2502. " %emulation\n"
  2503. " (@@@@ (gnu packages linux) %default-extra-linux-options)))\n"
  2504. "\n"
  2505. msgstr ""
  2506. "(define %macbook41-full-config\n"
  2507. " (append %macbook41-config-options\n"
  2508. " %file-systems\n"
  2509. " %efi-support\n"
  2510. " %emulation\n"
  2511. " (@@@@ (gnu packages linux) %default-extra-linux-options)))\n"
  2512. "\n"
  2513. #. type: lisp
  2514. #: guix-git/doc/guix-cookbook.texi:1579
  2515. #, no-wrap
  2516. msgid ""
  2517. "(define-public linux-libre-macbook41\n"
  2518. " ;; XXX: Access the internal 'make-linux-libre' procedure, which is\n"
  2519. " ;; private and unexported, and is liable to change in the future.\n"
  2520. " ((@@@@ (gnu packages linux) make-linux-libre) (@@@@ (gnu packages linux) %linux-libre-version)\n"
  2521. " (@@@@ (gnu packages linux) %linux-libre-hash)\n"
  2522. " '(\"x86_64-linux\")\n"
  2523. " #:extra-version \"macbook41\"\n"
  2524. " #:patches (@@@@ (gnu packages linux) %linux-libre-5.1-patches)\n"
  2525. " #:extra-options %macbook41-config-options))\n"
  2526. msgstr ""
  2527. "(define-public linux-libre-macbook41\n"
  2528. " ;; XXX: Auf die interne 'make-linux-libre'-Prozedur zugreifen, welche privat\n"
  2529. " ;; ist und nicht exportiert, desweiteren kann sie sich in Zukunft ändern.\n"
  2530. " ((@@@@ (gnu packages linux) make-linux-libre) (@@@@ (gnu packages linux) %linux-libre-version)\n"
  2531. " (@@@@ (gnu packages linux) %linux-libre-hash)\n"
  2532. " '(\"x86_64-linux\")\n"
  2533. " #:extra-version \"macbook41\"\n"
  2534. " #:patches (@@@@ (gnu packages linux) %linux-libre-5.1-patches)\n"
  2535. " #:extra-options %macbook41-config-options))\n"
  2536. #. type: Plain text
  2537. #: guix-git/doc/guix-cookbook.texi:1586
  2538. msgid "In the above example @code{%file-systems} is a collection of flags enabling different file system support, @code{%efi-support} enables EFI support and @code{%emulation} enables a x86_64-linux machine to act in 32-bit mode also. @code{%default-extra-linux-options} are the ones quoted above, which had to be added in since they were replaced in the @code{extra-options} keyword."
  2539. msgstr "Im obigen Beispiel ist @code{%file-systems} eine Sammlung solcher „Flags“, mit denen Unterstützung für verschiedene Dateisysteme aktiviert wird, @code{%efi-support} aktiviert Unterstützung für EFI und @code{%emulation} ermöglicht es einer x86_64-linux-Maschine, auch im 32-Bit-Modus zu arbeiten. Die @code{%default-extra-linux-options} sind die oben zitierten, die wieder hinzugefügt werden mussten, weil sie durch das @code{extra-options}-Schlüsselwort ersetzt worden waren."
  2540. #. type: Plain text
  2541. #: guix-git/doc/guix-cookbook.texi:1595
  2542. msgid "This all sounds like it should be doable, but how does one even know which modules are required for a particular system? Two places that can be helpful in trying to answer this question is the @uref{https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Kernel, Gentoo Handbook} and the @uref{https://www.kernel.org/doc/html/latest/admin-guide/README.html?highlight=localmodconfig, documentation from the kernel itself}. From the kernel documentation, it seems that @code{make localmodconfig} is the command we want."
  2543. msgstr "All das klingt machbar, aber woher weiß man überhaupt, welche Module für ein bestimmtes System nötig sind? Es gibt zwei hilfreiche Anlaufstellen, zum einen das @uref{https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Kernel, Gentoo-Handbuch}, zum anderen die @uref{https://www.kernel.org/doc/html/latest/admin-guide/README.html?highlight=localmodconfig, Dokumentation des Kernels selbst}. Aus der Kernel-Dokumentation erfahren wir, dass @code{make localmodconfig} der Befehl sein könnte, den wir wollen."
  2544. #. type: Plain text
  2545. #: guix-git/doc/guix-cookbook.texi:1598
  2546. msgid "In order to actually run @code{make localmodconfig} we first need to get and unpack the kernel source code:"
  2547. msgstr "Um @code{make localmodconfig} auch tatsächlich ausführen zu können, müssen wir zunächst den Quellcode des Kernels holen und entpacken:"
  2548. #. type: example
  2549. #: guix-git/doc/guix-cookbook.texi:1601
  2550. #, no-wrap
  2551. msgid "tar xf $(guix build linux-libre --source)\n"
  2552. msgstr "tar xf $(guix build linux-libre --source)\n"
  2553. #. type: Plain text
  2554. #: guix-git/doc/guix-cookbook.texi:1608
  2555. msgid "Once inside the directory containing the source code run @code{touch .config} to create an initial, empty @file{.config} to start with. @code{make localmodconfig} works by seeing what you already have in @file{.config} and letting you know what you're missing. If the file is blank then you're missing everything. The next step is to run:"
  2556. msgstr "Sobald wir im Verzeichnis mit dem Quellcode sind, führen Sie @code{touch .config} aus, um mit einer ersten, leeren @file{.config} anzufangen. @code{make localmodconfig} funktioniert so, dass angeschaut wird, was bereits in Ihrer @file{.config} steht, und Ihnen mitgeteilt wird, was Ihnen noch fehlt. Wenn die Datei leer bleibt, fehlt eben alles. Der nächste Schritt ist, das hier auszuführen:"
  2557. #. type: example
  2558. #: guix-git/doc/guix-cookbook.texi:1611
  2559. #, no-wrap
  2560. msgid "guix environment linux-libre -- make localmodconfig\n"
  2561. msgstr "guix environment linux-libre -- make localmodconfig\n"
  2562. #. type: Plain text
  2563. #: guix-git/doc/guix-cookbook.texi:1616
  2564. msgid "and note the output. Do note that the @file{.config} file is still empty. The output generally contains two types of warnings. The first start with \"WARNING\" and can actually be ignored in our case. The second read:"
  2565. msgstr "und uns die Ausgabe davon anzuschauen. Beachten Sie, dass die @file{.config}-Datei noch immer leer ist. Die Ausgabe enthält im Allgemeinen zwei Arten von Warnungen. Am Anfang der ersten steht „WARNING“ und in unserem Fall können wir sie tatsächlich ignorieren. Bei der zweiten heißt es:"
  2566. #. type: example
  2567. #: guix-git/doc/guix-cookbook.texi:1619
  2568. #, no-wrap
  2569. msgid "module pcspkr did not have configs CONFIG_INPUT_PCSPKR\n"
  2570. msgstr "module pcspkr did not have configs CONFIG_INPUT_PCSPKR\n"
  2571. #. type: Plain text
  2572. #: guix-git/doc/guix-cookbook.texi:1624
  2573. msgid "For each of these lines, copy the @code{CONFIG_XXXX_XXXX} portion into the @file{.config} in the directory, and append @code{=m}, so in the end it looks like this:"
  2574. msgstr "Für jede solche Zeile kopieren Sie den @code{CONFIG_XXXX_XXXX}-Teil in die @file{.config} im selben Verzeichnis und hängen @code{=m} an, damit es am Ende so aussieht:"
  2575. #. type: example
  2576. #: guix-git/doc/guix-cookbook.texi:1628
  2577. #, no-wrap
  2578. msgid ""
  2579. "CONFIG_INPUT_PCSPKR=m\n"
  2580. "CONFIG_VIRTIO=m\n"
  2581. msgstr ""
  2582. "CONFIG_INPUT_PCSPKR=m\n"
  2583. "CONFIG_VIRTIO=m\n"
  2584. #. type: Plain text
  2585. #: guix-git/doc/guix-cookbook.texi:1637
  2586. msgid "After copying all the configuration options, run @code{make localmodconfig} again to make sure that you don't have any output starting with ``module''. After all of these machine specific modules there are a couple more left that are also needed. @code{CONFIG_MODULES} is necessary so that you can build and load modules separately and not have everything built into the kernel. @code{CONFIG_BLK_DEV_SD} is required for reading from hard drives. It is possible that there are other modules which you will need."
  2587. msgstr "Nachdem Sie alle Konfigurationsoptionen kopiert haben, führen Sie noch einmal @code{make localmodconfig} aus, um sicherzugehen, dass es keine Ausgaben mehr gibt, deren erstes Wort „module“ ist. Zusätzlich zu diesen maschinenspezifischen Modulen gibt es noch ein paar mehr, die Sie auch brauchen. @code{CONFIG_MODULES} brauchen Sie, damit Sie Module getrennt erstellen und laden können und nicht alles im Kernel eingebaut sein muss. Sie brauchen auch @code{CONFIG_BLK_DEV_SD}, um von Festplatten lesen zu können. Möglicherweise gibt es auch sonst noch Module, die Sie brauchen werden."
  2588. #. type: Plain text
  2589. #: guix-git/doc/guix-cookbook.texi:1641
  2590. msgid "This post does not aim to be a guide to configuring your own kernel however, so if you do decide to build a custom kernel you'll have to seek out other guides to create a kernel which is just right for your needs."
  2591. msgstr "Die Absicht hinter dem hier Niedergeschriebenen ist @emph{nicht}, eine Anleitung zum Konfigurieren eines eigenen Kernels zu sein. Wenn Sie also vorhaben, den Kernel an Ihre ganz eigenen Bedürfnisse anzupassen, werden Sie in anderen Anleitungen fündig."
  2592. #. type: Plain text
  2593. #: guix-git/doc/guix-cookbook.texi:1649
  2594. msgid "The second way to setup the kernel configuration makes more use of Guix's features and allows you to share configuration segments between different kernels. For example, all machines using EFI to boot have a number of EFI configuration flags that they need. It is likely that all the kernels will share a list of file systems to support. By using variables it is easier to see at a glance what features are enabled and to make sure you don't have features in one kernel but missing in another."
  2595. msgstr "Die zweite Möglichkeit, die Kernel-Konfiguration einzurichten, benutzt mehr von Guix’ Funktionalitäten und sie ermöglicht es Ihnen, Gemeinsamkeiten von Konfigurationen zwischen verschiedenen Kernels zu teilen. Zum Beispiel wird eine Reihe von EFI-Konfigurationsoptionen von allen Maschinen, die EFI benutzen, benötigt. Wahrscheinlich haben all diese Kernels eine Schnittmenge zu unterstützender Dateisysteme. Indem Sie Variable benutzen, können Sie leicht auf einen Schlag sehen, welche Funktionalitäten aktiviert sind, und gleichzeitig sicherstellen, dass Ihnen nicht Funktionalitäten des einen Kernels im anderen fehlen."
  2596. #. type: Plain text
  2597. #: guix-git/doc/guix-cookbook.texi:1654
  2598. msgid "Left undiscussed however, is Guix's initrd and its customization. It is likely that you'll need to modify the initrd on a machine using a custom kernel, since certain modules which are expected to be built may not be available for inclusion into the initrd."
  2599. msgstr "Was wir hierbei nicht erläutert haben, ist, wie Guix’ initrd und dessen Anpassung funktioniert. Wahrscheinlich werden Sie auf einer Maschine mit eigenem Kernel die initrd verändern müssen, weil sonst versucht wird, bestimmte Module in die initrd einzubinden, die Sie gar nicht erstellen haben lassen."
  2600. #. type: Plain text
  2601. #: guix-git/doc/guix-cookbook.texi:1661
  2602. msgid "Historically, Guix System is centered around an @code{operating-system} structure. This structure contains various fields ranging from the bootloader and kernel declaration to the services to install."
  2603. msgstr "In der Vergangenheit drehte sich in Guix System alles um eine @code{operating-system}-Struktur. So eine Struktur enthält vielerlei Felder vom Bootloader und der Deklaration des Kernels bis hin zu den Diensten, die installiert werden sollen."
  2604. #. type: Plain text
  2605. #: guix-git/doc/guix-cookbook.texi:1667
  2606. msgid "Depending on the target machine, that can go from a standard @code{x86_64} machine to a small ARM single board computer such as the Pine64, the image constraints can vary a lot. The hardware manufacturers will impose different image formats with various partition sizes and offsets."
  2607. msgstr "Aber je nach Zielmaschine — diese kann alles von einer normalen @code{x86_64}-Maschine sein bis zu einem kleinen ARM-Einplatinenrechner wie dem Pine64 —, können die für ein Abbild geltenden Einschränkungen sehr unterschiedlich sein. Die Hardwarehersteller ordnen verschiedene Abbildformate an mit unterschiedlich versetzten unterschiedlich großen Partitionen."
  2608. #. type: Plain text
  2609. #: guix-git/doc/guix-cookbook.texi:1672
  2610. msgid "To create images suitable for all those machines, a new abstraction is necessary: that's the goal of the @code{image} record. This record contains all the required information to be transformed into a standalone image, that can be directly booted on any target machine."
  2611. msgstr "Um für jede dieser Arten von Maschinen geeignete Abbilder zu erzeugen, brauchen wir eine neue Abstraktion. Dieses Ziel verfolgen wir mit dem @code{image}-Verbund. Ein Verbundsobjekt enthält alle nötigen Informationen, um daraus ein eigenständiges Abbild auf die Zielmaschine zu bringen. Es ist direkt startfähig von jeder solchen Zielmaschine."
  2612. #. type: lisp
  2613. #: guix-git/doc/guix-cookbook.texi:1694
  2614. #, no-wrap
  2615. msgid ""
  2616. "(define-record-type* <image>\n"
  2617. " image make-image\n"
  2618. " image?\n"
  2619. " (name image-name ;symbol\n"
  2620. " (default #f))\n"
  2621. " (format image-format) ;symbol\n"
  2622. " (target image-target\n"
  2623. " (default #f))\n"
  2624. " (size image-size ;size in bytes as integer\n"
  2625. " (default 'guess))\n"
  2626. " (operating-system image-operating-system ;<operating-system>\n"
  2627. " (default #f))\n"
  2628. " (partitions image-partitions ;list of <partition>\n"
  2629. " (default '()))\n"
  2630. " (compression? image-compression? ;boolean\n"
  2631. " (default #t))\n"
  2632. " (volatile-root? image-volatile-root? ;boolean\n"
  2633. " (default #t))\n"
  2634. " (substitutable? image-substitutable? ;boolean\n"
  2635. " (default #t)))\n"
  2636. msgstr ""
  2637. "(define-record-type* <image>\n"
  2638. " image make-image\n"
  2639. " image?\n"
  2640. " (name image-name ;Symbol\n"
  2641. " (default #f))\n"
  2642. " (format image-format) ;Symbol\n"
  2643. " (target image-target\n"
  2644. " (default #f))\n"
  2645. " (size image-size ;Größe in Bytes als ganze Zahl\n"
  2646. " (default 'guess)) ;Vorgabe: automatisch bestimmen\n"
  2647. " (operating-system image-operating-system ;<operating-system>\n"
  2648. " (default #f))\n"
  2649. " (partitions image-partitions ;Liste von <partition>\n"
  2650. " (default '()))\n"
  2651. " (compression? image-compression? ;Boolescher Ausdruck\n"
  2652. " (default #t))\n"
  2653. " (volatile-root? image-volatile-root? ;Boolescher Ausdruck\n"
  2654. " (default #t))\n"
  2655. " (substitutable? image-substitutable? ;Boolescher Ausdruck\n"
  2656. " (default #t)))\n"
  2657. #. type: Plain text
  2658. #: guix-git/doc/guix-cookbook.texi:1700
  2659. msgid "This record contains the operating-system to instantiate. The @code{format} field defines the image type and can be @code{efi-raw}, @code{qcow2} or @code{iso9660} for instance. In the future, it could be extended to @code{docker} or other image types."
  2660. msgstr "In einem Verbundsobjekt davon steht auch das zu instanziierende Betriebssystem (in @code{operating-system}). Im Feld @code{format} steht, was der Abbildtyp („image type“) ist, zum Beispiel @code{efi-raw}, @code{qcow2} oder @code{iso9660}. In Zukunft könnten die Möglichkeiten auf @code{docker} oder andere Abbildtypen erweitert werden."
  2661. #. type: Plain text
  2662. #: guix-git/doc/guix-cookbook.texi:1703
  2663. msgid "A new directory in the Guix sources is dedicated to images definition. For now there are four files:"
  2664. msgstr "Ein neues Verzeichnis im Guix-Quellbaum wurde Abbilddefinitionen gewidmet. Zurzeit gibt es vier Dateien darin:"
  2665. #. type: file{#1}
  2666. #: guix-git/doc/guix-cookbook.texi:1705
  2667. #, no-wrap
  2668. msgid "gnu/system/images/hurd.scm"
  2669. msgstr "gnu/system/images/hurd.scm"
  2670. #. type: file{#1}
  2671. #: guix-git/doc/guix-cookbook.texi:1706
  2672. #, no-wrap
  2673. msgid "gnu/system/images/pine64.scm"
  2674. msgstr "gnu/system/images/pine64.scm"
  2675. #. type: file{#1}
  2676. #: guix-git/doc/guix-cookbook.texi:1707
  2677. #, no-wrap
  2678. msgid "gnu/system/images/novena.scm"
  2679. msgstr "gnu/system/images/novena.scm"
  2680. #. type: file{#1}
  2681. #: guix-git/doc/guix-cookbook.texi:1708
  2682. #, no-wrap
  2683. msgid "gnu/system/images/pinebook-pro.scm"
  2684. msgstr "gnu/system/images/pinebook-pro.scm"
  2685. #. type: Plain text
  2686. #: guix-git/doc/guix-cookbook.texi:1714
  2687. msgid "Let's have a look to @file{pine64.scm}. It contains the @code{pine64-barebones-os} variable which is a minimal definition of an operating-system dedicated to the @b{Pine A64 LTS} board."
  2688. msgstr "Schauen wir uns @file{pine64.scm} an. Es enthält die Variable @code{pine64-barebones-os}, bei der es sich um eine minimale Definition eines Betriebssystems handelt, die auf Platinen der Art @b{Pine A64 LTS} ausgerichtet ist."
  2689. #. type: lisp
  2690. #: guix-git/doc/guix-cookbook.texi:1738
  2691. #, fuzzy, no-wrap
  2692. #| msgid ""
  2693. #| "(define pine64-barebones-os\n"
  2694. #| " (operating-system\n"
  2695. #| " (host-name \"vignemale\")\n"
  2696. #| " (timezone \"Europe/Paris\")\n"
  2697. #| " (locale \"en_US.utf8\")\n"
  2698. #| " (bootloader (bootloader-configuration\n"
  2699. #| " (bootloader u-boot-pine64-lts-bootloader)\n"
  2700. #| " (target \"/dev/vda\")))\n"
  2701. #| " (initrd-modules '())\n"
  2702. #| " (kernel linux-libre-arm64-generic)\n"
  2703. #| " (file-systems (cons (file-system\n"
  2704. #| " (device (file-system-label \"my-root\"))\n"
  2705. #| " (mount-point \"/\")\n"
  2706. #| " (type \"ext4\"))\n"
  2707. #| " %base-file-systems))\n"
  2708. #| " (services (cons (service agetty-service-type\n"
  2709. #| " (agetty-configuration\n"
  2710. #| " (extra-options '(\"-L\")) ; no carrier detect\n"
  2711. #| " (baud-rate \"115200\")\n"
  2712. #| " (term \"vt100\")\n"
  2713. #| " (tty \"ttyS0\")))\n"
  2714. #| " %base-services))))\n"
  2715. msgid ""
  2716. "(define pine64-barebones-os\n"
  2717. " (operating-system\n"
  2718. " (host-name \"vignemale\")\n"
  2719. " (timezone \"Europe/Paris\")\n"
  2720. " (locale \"en_US.utf8\")\n"
  2721. " (bootloader (bootloader-configuration\n"
  2722. " (bootloader u-boot-pine64-lts-bootloader)\n"
  2723. " (targets '(\"/dev/vda\"))))\n"
  2724. " (initrd-modules '())\n"
  2725. " (kernel linux-libre-arm64-generic)\n"
  2726. " (file-systems (cons (file-system\n"
  2727. " (device (file-system-label \"my-root\"))\n"
  2728. " (mount-point \"/\")\n"
  2729. " (type \"ext4\"))\n"
  2730. " %base-file-systems))\n"
  2731. " (services (cons (service agetty-service-type\n"
  2732. " (agetty-configuration\n"
  2733. " (extra-options '(\"-L\")) ; no carrier detect\n"
  2734. " (baud-rate \"115200\")\n"
  2735. " (term \"vt100\")\n"
  2736. " (tty \"ttyS0\")))\n"
  2737. " %base-services))))\n"
  2738. msgstr ""
  2739. "(define pine64-barebones-os\n"
  2740. " (operating-system\n"
  2741. " (host-name \"vignemale\")\n"
  2742. " (timezone \"Europe/Paris\")\n"
  2743. " (locale \"en_US.utf8\")\n"
  2744. " (bootloader (bootloader-configuration\n"
  2745. " (bootloader u-boot-pine64-lts-bootloader)\n"
  2746. " (target \"/dev/vda\")))\n"
  2747. " (initrd-modules '())\n"
  2748. " (kernel linux-libre-arm64-generic)\n"
  2749. " (file-systems (cons (file-system\n"
  2750. " (device (file-system-label \"my-root\"))\n"
  2751. " (mount-point \"/\")\n"
  2752. " (type \"ext4\"))\n"
  2753. " %base-file-systems))\n"
  2754. " (services (cons (service agetty-service-type\n"
  2755. " (agetty-configuration\n"
  2756. " (extra-options '(\"-L\")) ;kein Carrier Detect\n"
  2757. " (baud-rate \"115200\")\n"
  2758. " (term \"vt100\")\n"
  2759. " (tty \"ttyS0\")))\n"
  2760. " %base-services))))\n"
  2761. #. type: Plain text
  2762. #: guix-git/doc/guix-cookbook.texi:1742
  2763. msgid "The @code{kernel} and @code{bootloader} fields are pointing to packages dedicated to this board."
  2764. msgstr "Die Felder @code{kernel} und @code{bootloader} verweisen auf platinenspezifische Pakete."
  2765. #. type: Plain text
  2766. #: guix-git/doc/guix-cookbook.texi:1744
  2767. msgid "Right below, the @code{pine64-image-type} variable is also defined."
  2768. msgstr "Direkt darunter wird auch die Variable @code{pine64-image-type} definiert."
  2769. #. type: lisp
  2770. #: guix-git/doc/guix-cookbook.texi:1750
  2771. #, no-wrap
  2772. msgid ""
  2773. "(define pine64-image-type\n"
  2774. " (image-type\n"
  2775. " (name 'pine64-raw)\n"
  2776. " (constructor (cut image-with-os arm64-disk-image <>))))\n"
  2777. msgstr ""
  2778. "(define pine64-image-type\n"
  2779. " (image-type\n"
  2780. " (name 'pine64-raw)\n"
  2781. " (constructor (cut image-with-os arm64-disk-image <>))))\n"
  2782. #. type: Plain text
  2783. #: guix-git/doc/guix-cookbook.texi:1754
  2784. msgid "It's using a record we haven't talked about yet, the @code{image-type} record, defined this way:"
  2785. msgstr "Sie benutzt einen Verbundstyp, über den wir noch nicht gesprochen haben, den @code{image-type}-Verbund. Er ist wie folgt definiert:"
  2786. #. type: lisp
  2787. #: guix-git/doc/guix-cookbook.texi:1761
  2788. #, no-wrap
  2789. msgid ""
  2790. "(define-record-type* <image-type>\n"
  2791. " image-type make-image-type\n"
  2792. " image-type?\n"
  2793. " (name image-type-name) ;symbol\n"
  2794. " (constructor image-type-constructor)) ;<operating-system> -> <image>\n"
  2795. msgstr ""
  2796. "(define-record-type* <image-type>\n"
  2797. " image-type make-image-type\n"
  2798. " image-type?\n"
  2799. " (name image-type-name) ;Symbol\n"
  2800. " (constructor image-type-constructor)) ;<operating-system> -> <image>\n"
  2801. #. type: Plain text
  2802. #: guix-git/doc/guix-cookbook.texi:1767
  2803. msgid "The main purpose of this record is to associate a name to a procedure transforming an @code{operating-system} to an image. To understand why it is necessary, let's have a look to the command producing an image from an @code{operating-system} configuration file:"
  2804. msgstr "Der Hauptzweck dieses Verbunds ist, einer Prozedur, die ein @code{operating-system} in ein @code{image}-Abbild umwandelt, einen Namen zu geben. Um den Bedarf dafür nachzuvollziehen, schauen wir uns den Befehl an, mit dem ein Abbild aus einer @code{operating-system}-Konfigurationsdatei erzeugt wird:"
  2805. #. type: example
  2806. #: guix-git/doc/guix-cookbook.texi:1770
  2807. #, no-wrap
  2808. msgid "guix system image my-os.scm\n"
  2809. msgstr "guix system image my-os.scm\n"
  2810. #. type: Plain text
  2811. #: guix-git/doc/guix-cookbook.texi:1776
  2812. msgid "This command expects an @code{operating-system} configuration but how should we indicate that we want an image targeting a Pine64 board? We need to provide an extra information, the @code{image-type}, by passing the @code{--image-type} or @code{-t} flag, this way:"
  2813. msgstr "Dieser Befehl erwartet eine @code{operating-system}-Konfiguration, doch wie geben wir an, dass wir ein Abbild für einen Pine64-Rechner möchten? Wir müssen zusätzliche Informationen mitgeben, nämlich den Abbildtyp, @code{image-type}, indem wir die Befehlszeilenoption @code{--image-type} oder @code{-t} übergeben, und zwar so:"
  2814. #. type: example
  2815. #: guix-git/doc/guix-cookbook.texi:1779
  2816. #, no-wrap
  2817. msgid "guix system image --image-type=pine64-raw my-os.scm\n"
  2818. msgstr "guix system image --image-type=pine64-raw my-os.scm\n"
  2819. #. type: Plain text
  2820. #: guix-git/doc/guix-cookbook.texi:1785
  2821. msgid "This @code{image-type} parameter points to the @code{pine64-image-type} defined above. Hence, the @code{operating-system} declared in @code{my-os.scm} will be applied the @code{(cut image-with-os arm64-disk-image <>)} procedure to turn it into an image."
  2822. msgstr "Der Parameter @code{image-type} verweist auf den oben definierten @code{pine64-image-type}. Dadurch wird die Prozedur @code{(cut image-with-os arm64-disk-image <>)} auf das in @code{my-os.scm} deklarierte @code{operating-system} angewandt und macht es zu einem @code{image}-Abbild."
  2823. #. type: Plain text
  2824. #: guix-git/doc/guix-cookbook.texi:1787
  2825. msgid "The resulting image looks like:"
  2826. msgstr "Es ergibt sich ein Abbild wie dieses:"
  2827. #. type: lisp
  2828. #: guix-git/doc/guix-cookbook.texi:1797
  2829. #, no-wrap
  2830. msgid ""
  2831. "(image\n"
  2832. " (format 'disk-image)\n"
  2833. " (target \"aarch64-linux-gnu\")\n"
  2834. " (operating-system my-os)\n"
  2835. " (partitions\n"
  2836. " (list (partition\n"
  2837. " (inherit root-partition)\n"
  2838. " (offset root-offset)))))\n"
  2839. msgstr ""
  2840. "(image\n"
  2841. " (format 'disk-image)\n"
  2842. " (target \"aarch64-linux-gnu\")\n"
  2843. " (operating-system my-os)\n"
  2844. " (partitions\n"
  2845. " (list (partition\n"
  2846. " (inherit root-partition)\n"
  2847. " (offset root-offset)))))\n"
  2848. #. type: Plain text
  2849. #: guix-git/doc/guix-cookbook.texi:1801
  2850. msgid "which is the aggregation of the @code{operating-system} defined in @code{my-os.scm} to the @code{arm64-disk-image} record."
  2851. msgstr "Das ist das Aggregat aus dem in @code{my-os.scm} definierten @code{operating-system} und dem @code{arm64-disk-image}-Verbundsobjekt."
  2852. #. type: Plain text
  2853. #: guix-git/doc/guix-cookbook.texi:1803
  2854. msgid "But enough Scheme madness. What does this image API bring to the Guix user?"
  2855. msgstr "Aber genug vom Scheme-Wahnsinn. Was nützt die Image-Schnittstelle dem Nutzer von Guix?"
  2856. #. type: Plain text
  2857. #: guix-git/doc/guix-cookbook.texi:1805
  2858. msgid "One can run:"
  2859. msgstr "Sie können das ausführen:"
  2860. #. type: example
  2861. #: guix-git/doc/guix-cookbook.texi:1809
  2862. #, no-wrap
  2863. msgid ""
  2864. "mathieu@@cervin:~$ guix system --list-image-types\n"
  2865. "The available image types are:\n"
  2866. "\n"
  2867. msgstr ""
  2868. "mathieu@@cervin:~$ guix system --list-image-types\n"
  2869. "Die verfügbaren Abbildtypen sind:\n"
  2870. "\n"
  2871. #. type: example
  2872. #: guix-git/doc/guix-cookbook.texi:1821
  2873. #, no-wrap
  2874. msgid ""
  2875. " - pinebook-pro-raw\n"
  2876. " - pine64-raw\n"
  2877. " - novena-raw\n"
  2878. " - hurd-raw\n"
  2879. " - hurd-qcow2\n"
  2880. " - qcow2\n"
  2881. " - uncompressed-iso9660\n"
  2882. " - efi-raw\n"
  2883. " - arm64-raw\n"
  2884. " - arm32-raw\n"
  2885. " - iso9660\n"
  2886. msgstr ""
  2887. " - pinebook-pro-raw\n"
  2888. " - pine64-raw\n"
  2889. " - novena-raw\n"
  2890. " - hurd-raw\n"
  2891. " - hurd-qcow2\n"
  2892. " - qcow2\n"
  2893. " - uncompressed-iso9660\n"
  2894. " - efi-raw\n"
  2895. " - arm64-raw\n"
  2896. " - arm32-raw\n"
  2897. " - iso9660\n"
  2898. #. type: Plain text
  2899. #: guix-git/doc/guix-cookbook.texi:1826
  2900. msgid "and by writing an @code{operating-system} file based on @code{pine64-barebones-os}, you can customize your image to your preferences in a file (@file{my-pine-os.scm}) like this:"
  2901. msgstr "und indem Sie eine Betriebssystemkonfigurationsdatei mit einem auf @code{pine64-barebones-os} aufbauenden @code{operating-system} schreiben, können Sie Ihr Abbild nach Ihren Wünschen anpassen in einer Datei, sagen wir @file{my-pine-os.scm}:"
  2902. #. type: lisp
  2903. #: guix-git/doc/guix-cookbook.texi:1830
  2904. #, no-wrap
  2905. msgid ""
  2906. "(use-modules (gnu services linux)\n"
  2907. " (gnu system images pine64))\n"
  2908. "\n"
  2909. msgstr ""
  2910. "(use-modules (gnu services linux)\n"
  2911. " (gnu system images pine64))\n"
  2912. "\n"
  2913. #. type: lisp
  2914. #: guix-git/doc/guix-cookbook.texi:1841
  2915. #, no-wrap
  2916. msgid ""
  2917. "(let ((base-os pine64-barebones-os))\n"
  2918. " (operating-system\n"
  2919. " (inherit base-os)\n"
  2920. " (timezone \"America/Indiana/Indianapolis\")\n"
  2921. " (services\n"
  2922. " (cons\n"
  2923. " (service earlyoom-service-type\n"
  2924. " (earlyoom-configuration\n"
  2925. " (prefer-regexp \"icecat|chromium\")))\n"
  2926. " (operating-system-user-services base-os)))))\n"
  2927. msgstr ""
  2928. "(let ((base-os pine64-barebones-os))\n"
  2929. " (operating-system\n"
  2930. " (inherit base-os)\n"
  2931. " (timezone \"America/Indiana/Indianapolis\")\n"
  2932. " (services\n"
  2933. " (cons\n"
  2934. " (service earlyoom-service-type\n"
  2935. " (earlyoom-configuration\n"
  2936. " (prefer-regexp \"icecat|chromium\")))\n"
  2937. " (operating-system-user-services base-os)))))\n"
  2938. #. type: Plain text
  2939. #: guix-git/doc/guix-cookbook.texi:1844
  2940. msgid "run:"
  2941. msgstr "Führen Sie aus:"
  2942. #. type: example
  2943. #: guix-git/doc/guix-cookbook.texi:1847
  2944. #, no-wrap
  2945. msgid "guix system image --image-type=pine64-raw my-pine-os.scm\n"
  2946. msgstr "guix system image --image-type=pine64-raw my-pine-os.scm\n"
  2947. #. type: Plain text
  2948. #: guix-git/doc/guix-cookbook.texi:1850
  2949. msgid "or,"
  2950. msgstr "oder"
  2951. #. type: example
  2952. #: guix-git/doc/guix-cookbook.texi:1853
  2953. #, no-wrap
  2954. msgid "guix system image --image-type=hurd-raw my-hurd-os.scm\n"
  2955. msgstr "guix system image --image-type=hurd-raw my-hurd-os.scm\n"
  2956. #. type: Plain text
  2957. #: guix-git/doc/guix-cookbook.texi:1857
  2958. msgid "to get an image that can be written directly to a hard drive and booted from."
  2959. msgstr "und Sie bekommen ein Abbild, das Sie direkt auf eine Festplatte kopieren und starten können."
  2960. #. type: Plain text
  2961. #: guix-git/doc/guix-cookbook.texi:1859
  2962. msgid "Without changing anything to @code{my-hurd-os.scm}, calling:"
  2963. msgstr "Ohne irgendetwas an @code{my-hurd-os.scm} zu ändern, bewirkt ein Aufruf"
  2964. #. type: example
  2965. #: guix-git/doc/guix-cookbook.texi:1862
  2966. #, no-wrap
  2967. msgid "guix system image --image-type=hurd-qcow2 my-hurd-os.scm\n"
  2968. msgstr "guix system image --image-type=hurd-qcow2 my-hurd-os.scm\n"
  2969. #. type: Plain text
  2970. #: guix-git/doc/guix-cookbook.texi:1865
  2971. msgid "will instead produce a Hurd QEMU image."
  2972. msgstr "dass stattdessen ein Hurd-Abbild für QEMU erzeugt wird."
  2973. #. type: Plain text
  2974. #: guix-git/doc/guix-cookbook.texi:1872
  2975. msgid "To connect to a Wireguard VPN server you need the kernel module to be loaded in memory and a package providing networking tools that support it (e.g. @code{wireguard-tools} or @code{network-manager})."
  2976. msgstr "Damit Sie sich mit einem Wireguard-VPN-Server verbinden können, müssen Sie dafür sorgen, dass die dafür nötigen Kernel-Module in den Speicher eingeladen werden und ein Paket bereitsteht, dass die unterstützenden Netzwerkwerkzeuge dazu enthält (z.B.@: @code{wireguard-tools} oder @code{network-manager})."
  2977. #. type: Plain text
  2978. #: guix-git/doc/guix-cookbook.texi:1876
  2979. msgid "Here is a configuration example for Linux-Libre < 5.6, where the module is out of tree and need to be loaded manually---following revisions of the kernel have it built-in and so don't need such configuration:"
  2980. msgstr "Hier ist ein Beispiel für eine Konfiguration für Linux-Libre < 5.6, wo sich das Modul noch nicht im Kernel-Quellbaum befindet („out of tree“) und daher von Hand geladen werden muss — in nachfolgenden Kernelversionen ist das Modul bereits eingebaut und @emph{keine} derartige Konfiguration ist nötig."
  2981. #. type: lisp
  2982. #: guix-git/doc/guix-cookbook.texi:1881
  2983. #, no-wrap
  2984. msgid ""
  2985. "(use-modules (gnu))\n"
  2986. "(use-service-modules desktop)\n"
  2987. "(use-package-modules vpn)\n"
  2988. "\n"
  2989. msgstr ""
  2990. "(use-modules (gnu))\n"
  2991. "(use-service-modules desktop)\n"
  2992. "(use-package-modules vpn)\n"
  2993. "\n"
  2994. #. type: lisp
  2995. #: guix-git/doc/guix-cookbook.texi:1890
  2996. #, no-wrap
  2997. msgid ""
  2998. "(operating-system\n"
  2999. " ;; …\n"
  3000. " (services (cons (simple-service 'wireguard-module\n"
  3001. " kernel-module-loader-service-type\n"
  3002. " '(\"wireguard\"))\n"
  3003. " %desktop-services))\n"
  3004. " (packages (cons wireguard-tools %base-packages))\n"
  3005. " (kernel-loadable-modules (list wireguard-linux-compat)))\n"
  3006. msgstr ""
  3007. "(operating-system\n"
  3008. " ;; …\n"
  3009. " (services (cons (simple-service 'wireguard-module\n"
  3010. " kernel-module-loader-service-type\n"
  3011. " '(\"wireguard\"))\n"
  3012. " %desktop-services))\n"
  3013. " (packages (cons wireguard-tools %base-packages))\n"
  3014. " (kernel-loadable-modules (list wireguard-linux-compat)))\n"
  3015. #. type: Plain text
  3016. #: guix-git/doc/guix-cookbook.texi:1894
  3017. msgid "After reconfiguring and restarting your system you can either use Wireguard tools or NetworkManager to connect to a VPN server."
  3018. msgstr "Nachdem Sie Ihr System rekonfiguriert haben, können Sie dann entweder die Wireguard-Werkzeuge („Wireguard Tools“) oder NetworkManager benutzen, um sich mit einem VPN-Server zu verbinden."
  3019. #. type: subsection
  3020. #: guix-git/doc/guix-cookbook.texi:1895
  3021. #, no-wrap
  3022. msgid "Using Wireguard tools"
  3023. msgstr "Die Wireguard Tools benutzen"
  3024. #. type: Plain text
  3025. #: guix-git/doc/guix-cookbook.texi:1901
  3026. msgid "To test your Wireguard setup it is convenient to use @command{wg-quick}. Just give it a configuration file @command{wg-quick up ./wg0.conf}; or put that file in @file{/etc/wireguard} and run @command{wg-quick up wg0} instead."
  3027. msgstr "Um Ihre Wireguard-Konfiguration zu testen, bietet es sich an, @command{wg-quick} zu benutzen. Übergeben Sie einfach eine Konfigurationsdatei @command{wg-quick up ./wg0.conf}. Sie können auch die Konfigurationsdatei in @file{/etc/wireguard} platzieren und dann stattdessen @command{wg-quick up wg0} ausführen."
  3028. #. type: quotation
  3029. #: guix-git/doc/guix-cookbook.texi:1902
  3030. #, no-wrap
  3031. msgid "Note"
  3032. msgstr "Anmerkung"
  3033. #. type: quotation
  3034. #: guix-git/doc/guix-cookbook.texi:1905
  3035. msgid "Be warned that the author described this command as a: “[…] very quick and dirty bash script […]”."
  3036. msgstr "Seien Sie gewarnt, dass sein Autor diesen Befehl als ein schnell und unsauber geschriebenes Bash-Skript bezeichnet hat."
  3037. #. type: subsection
  3038. #: guix-git/doc/guix-cookbook.texi:1907
  3039. #, no-wrap
  3040. msgid "Using NetworkManager"
  3041. msgstr "NetworkManager benutzen"
  3042. #. type: Plain text
  3043. #: guix-git/doc/guix-cookbook.texi:1915
  3044. msgid "Thanks to NetworkManager support for Wireguard we can connect to our VPN using @command{nmcli} command. Up to this point this guide assumes that you're using Network Manager service provided by @code{%desktop-services}. Ortherwise you need to adjust your services list to load @code{network-manager-service-type} and reconfigure your Guix system."
  3045. msgstr "Dank der Unterstützung für Wireguard durch den NetworkManager können wir über den Befehl @command{nmcli} eine Verbindung mit unserem VPN herstellen. Bislang treffen wir in dieser Anleitung die Annahme, dass Sie den Network-Manager-Dienst aus den @code{%desktop-services} benutzen. Wenn Sie eine abweichende Konfiguration verwenden, müssen Sie unter Umständen Ihre @code{services}-Liste abändern, damit ein @code{network-manager-service-type} geladen wird, und Ihr Guix-System rekonfigurieren."
  3046. #. type: Plain text
  3047. #: guix-git/doc/guix-cookbook.texi:1917
  3048. msgid "To import your VPN configuration execute nmcli import command:"
  3049. msgstr "Benutzen Sie den nmcli-Import-Befehl, um Ihre VPN-Konfiguration zu importieren."
  3050. #. type: example
  3051. #: guix-git/doc/guix-cookbook.texi:1921
  3052. #, no-wrap
  3053. msgid ""
  3054. "# nmcli connection import type wireguard file wg0.conf\n"
  3055. "Connection 'wg0' (edbee261-aa5a-42db-b032-6c7757c60fde) successfully added\n"
  3056. msgstr ""
  3057. "# nmcli connection import type wireguard file wg0.conf\n"
  3058. "Verbindung »wg0« (edbee261-aa5a-42db-b032-6c7757c60fde) erfolgreich hinzugefügt.\n"
  3059. #. type: Plain text
  3060. #: guix-git/doc/guix-cookbook.texi:1926
  3061. msgid "This will create a configuration file in @file{/etc/NetworkManager/wg0.nmconnection}. Next connect to the Wireguard server:"
  3062. msgstr "Dadurch wird eine Konfigurationsdatei in @file{/etc/NetworkManager/wg0.nmconnection} angelegt. Anschließend können Sie sich mit dem Wireguard-Server verbinden:"
  3063. #. type: example
  3064. #: guix-git/doc/guix-cookbook.texi:1930
  3065. #, no-wrap
  3066. msgid ""
  3067. "$ nmcli connection up wg0\n"
  3068. "Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/6)\n"
  3069. msgstr ""
  3070. "$ nmcli connection up wg0\n"
  3071. "Verbindung wurde erfolgreich aktiviert (aktiver D-Bus-Pfad: /org/freedesktop/NetworkManager/ActiveConnection/6)\n"
  3072. #. type: Plain text
  3073. #: guix-git/doc/guix-cookbook.texi:1934
  3074. msgid "By default NetworkManager will connect automatically on system boot. To change that behaviour you need to edit your config:"
  3075. msgstr "Nach Voreinstellung wird sich NetworkManager automatisch beim Systemstart verbinden. Um dieses Verhalten zu ändern, müssen Sie Ihre Konfiguration bearbeiten:"
  3076. #. type: example
  3077. #: guix-git/doc/guix-cookbook.texi:1937
  3078. #, no-wrap
  3079. msgid "# nmcli connection modify wg0 connection.autoconnect no\n"
  3080. msgstr "# nmcli connection modify wg0 connection.autoconnect no\n"
  3081. #. type: Plain text
  3082. #: guix-git/doc/guix-cookbook.texi:1942
  3083. msgid "For more specific information about NetworkManager and wireguard @uref{https://blogs.gnome.org/thaller/2019/03/15/wireguard-in-networkmanager/,see this post by thaller}."
  3084. msgstr "Für Informationen speziell zu NetworkManager und Wireguard @uref{https://blogs.gnome.org/thaller/2019/03/15/wireguard-in-networkmanager/,siehe diesen Blogeintrag von thaller}."
  3085. #. type: cindex
  3086. #: guix-git/doc/guix-cookbook.texi:1945
  3087. #, no-wrap
  3088. msgid "wm"
  3089. msgstr "Fensterverwaltung (Window Manager, WM)"
  3090. #. type: subsection
  3091. #: guix-git/doc/guix-cookbook.texi:1947 guix-git/doc/guix-cookbook.texi:1948
  3092. #, no-wrap
  3093. msgid "StumpWM"
  3094. msgstr "StumpWM"
  3095. #. type: cindex
  3096. #: guix-git/doc/guix-cookbook.texi:1949
  3097. #, no-wrap
  3098. msgid "stumpwm"
  3099. msgstr "stumpwm"
  3100. #. type: Plain text
  3101. #: guix-git/doc/guix-cookbook.texi:1954
  3102. msgid "You could install StumpWM with a Guix system by adding @code{stumpwm} and optionally @code{`(,stumpwm \"lib\")} packages to a system configuration file, e.g.@: @file{/etc/config.scm}."
  3103. msgstr "Sie können StumpWM mit einem Guix-System installieren, indem Sie die Pakete @code{stumpwm} und optional auch @code{`(,stumpwm \"lib\")} in eine Systemkonfigurationsdatei, z.B.@: @file{/etc/config.scm}, eintragen."
  3104. #. type: Plain text
  3105. #: guix-git/doc/guix-cookbook.texi:1956
  3106. msgid "An example configuration can look like this:"
  3107. msgstr "Eine Beispielkonfiguration kann so aussehen:"
  3108. #. type: lisp
  3109. #: guix-git/doc/guix-cookbook.texi:1960
  3110. #, no-wrap
  3111. msgid ""
  3112. "(use-modules (gnu))\n"
  3113. "(use-package-modules wm)\n"
  3114. "\n"
  3115. msgstr ""
  3116. "(use-modules (gnu))\n"
  3117. "(use-package-modules wm)\n"
  3118. "\n"
  3119. #. type: lisp
  3120. #: guix-git/doc/guix-cookbook.texi:1965
  3121. #, no-wrap
  3122. msgid ""
  3123. "(operating-system\n"
  3124. " ;; …\n"
  3125. " (packages (append (list sbcl stumpwm `(,stumpwm \"lib\"))\n"
  3126. " %base-packages)))\n"
  3127. msgstr ""
  3128. "(operating-system\n"
  3129. " ;; …\n"
  3130. " (packages (append (list sbcl stumpwm `(,stumpwm \"lib\"))\n"
  3131. " %base-packages)))\n"
  3132. #. type: cindex
  3133. #: guix-git/doc/guix-cookbook.texi:1967
  3134. #, no-wrap
  3135. msgid "stumpwm fonts"
  3136. msgstr "StumpWM-Schriftarten"
  3137. #. type: Plain text
  3138. #: guix-git/doc/guix-cookbook.texi:1971
  3139. msgid "By default StumpWM uses X11 fonts, which could be small or pixelated on your system. You could fix this by installing StumpWM contrib Lisp module @code{sbcl-ttf-fonts}, adding it to Guix system packages:"
  3140. msgstr "Nach Voreinstellung benutzt StumpWM die Schriftarten von X11, die auf Ihrem System klein oder verpixelt erscheinen mögen. Sie können das Problem beheben, indem Sie das Lisp-Modul @code{sbcl-ttf-fonts} aus den Beiträgen zu StumpWM („StumpWM Contrib“) als Systempaket installieren:"
  3141. #. type: lisp
  3142. #: guix-git/doc/guix-cookbook.texi:1975
  3143. #, no-wrap
  3144. msgid ""
  3145. "(use-modules (gnu))\n"
  3146. "(use-package-modules fonts wm)\n"
  3147. "\n"
  3148. msgstr ""
  3149. "(use-modules (gnu))\n"
  3150. "(use-package-modules fonts wm)\n"
  3151. "\n"
  3152. #. type: lisp
  3153. #: guix-git/doc/guix-cookbook.texi:1980
  3154. #, no-wrap
  3155. msgid ""
  3156. "(operating-system\n"
  3157. " ;; …\n"
  3158. " (packages (append (list sbcl stumpwm `(,stumpwm \"lib\"))\n"
  3159. " sbcl-ttf-fonts font-dejavu %base-packages)))\n"
  3160. msgstr ""
  3161. "(operating-system\n"
  3162. " ;; …\n"
  3163. " (packages (append (list sbcl stumpwm `(,stumpwm \"lib\"))\n"
  3164. " sbcl-ttf-fonts font-dejavu %base-packages)))\n"
  3165. #. type: Plain text
  3166. #: guix-git/doc/guix-cookbook.texi:1984
  3167. msgid "Then you need to add the following code to a StumpWM configuration file @file{~/.stumpwm.d/init.lisp}:"
  3168. msgstr "Den folgenden Code fügen Sie in die Konfigurationsdatei von StumpWM @file{~/.stumpwm.d/init.lisp} ein:"
  3169. #. type: lisp
  3170. #: guix-git/doc/guix-cookbook.texi:1991
  3171. #, no-wrap
  3172. msgid ""
  3173. "(require :ttf-fonts)\n"
  3174. "(setf xft:*font-dirs* '(\"/run/current-system/profile/share/fonts/\"))\n"
  3175. "(setf clx-truetype:+font-cache-filename+ (concat (getenv \"HOME\") \"/.fonts/font-cache.sexp\"))\n"
  3176. "(xft:cache-fonts)\n"
  3177. "(set-font (make-instance 'xft:font :family \"DejaVu Sans Mono\" :subfamily \"Book\" :size 11))\n"
  3178. msgstr ""
  3179. "(require :ttf-fonts)\n"
  3180. "(setf xft:*font-dirs* '(\"/run/current-system/profile/share/fonts/\"))\n"
  3181. "(setf clx-truetype:+font-cache-filename+ (concat (getenv \"HOME\") \"/.fonts/font-cache.sexp\"))\n"
  3182. "(xft:cache-fonts)\n"
  3183. "(set-font (make-instance 'xft:font :family \"DejaVu Sans Mono\" :subfamily \"Book\" :size 11))\n"
  3184. #. type: subsection
  3185. #: guix-git/doc/guix-cookbook.texi:1993 guix-git/doc/guix-cookbook.texi:1994
  3186. #, no-wrap
  3187. msgid "Session lock"
  3188. msgstr "Sitzungen sperren"
  3189. #. type: cindex
  3190. #: guix-git/doc/guix-cookbook.texi:1995
  3191. #, no-wrap
  3192. msgid "sessionlock"
  3193. msgstr "Sitzungssperre"
  3194. #. type: Plain text
  3195. #: guix-git/doc/guix-cookbook.texi:2001
  3196. msgid "Depending on your environment, locking the screen of your session might come built in or it might be something you have to set up yourself. If you use a desktop environment like GNOME or KDE, it's usually built in. If you use a plain window manager like StumpWM or EXWM, you might have to set it up yourself."
  3197. msgstr "Abhängig von Ihrer Arbeitsumgebung ist das Sperren Ihres Bildschirms vielleicht bereits eingebaut. Wenn nicht, müssen Sie es selbst einrichten. Wenn Sie eine Arbeitsumgebung wie GNOME oder KDE benutzen, ist Sperren normalerweise bereits möglich. Wenn Sie einen einfachen Fensterverwalter („Window Manager“) wie StumpWM oder EXWM benutzen, müssen Sie es vielleicht selbst einrichten."
  3198. #. type: subsubsection
  3199. #: guix-git/doc/guix-cookbook.texi:2002 guix-git/doc/guix-cookbook.texi:2003
  3200. #, no-wrap
  3201. msgid "Xorg"
  3202. msgstr "Xorg"
  3203. #. type: Plain text
  3204. #: guix-git/doc/guix-cookbook.texi:2009
  3205. msgid "If you use Xorg, you can use the utility @uref{https://www.mankier.com/1/xss-lock, xss-lock} to lock the screen of your session. xss-lock is triggered by DPMS which since Xorg 1.8 is auto-detected and enabled if ACPI is also enabled at kernel runtime."
  3206. msgstr "Sofern Sie Xorg benutzen, können Sie mit dem Programm @uref{https://www.mankier.com/1/xss-lock, xss-lock} den Bildschirm für Ihre Sitzung sperren. xss-lock wird durch DPMS ausgelöst, was seit Xorg 1.8 automatisch aktiv ist, wenn zur Laufzeit des Kernels ACPI verfügbar ist."
  3207. #. type: Plain text
  3208. #: guix-git/doc/guix-cookbook.texi:2012
  3209. msgid "To use xss-lock, you can simple execute it and put it into the background before you start your window manager from e.g. your @file{~/.xsession}:"
  3210. msgstr "Um xss-lock zu benutzen, können Sie es einfach ausführen und in den Hintergrund versetzen, bevor Sie Ihren Fensterverwalter z.B.@: aus Ihrer @file{~/.xsession} heraus starten:"
  3211. #. type: example
  3212. #: guix-git/doc/guix-cookbook.texi:2016
  3213. #, no-wrap
  3214. msgid ""
  3215. "xss-lock -- slock &\n"
  3216. "exec stumpwm\n"
  3217. msgstr ""
  3218. "xss-lock -- slock &\n"
  3219. "exec stumpwm\n"
  3220. #. type: Plain text
  3221. #: guix-git/doc/guix-cookbook.texi:2020
  3222. msgid "In this example, xss-lock uses @code{slock} to do the actual locking of the screen when it determines it's appropriate, like when you suspend your device."
  3223. msgstr "In diesem Beispiel benutzt xss-lock das Programm @code{slock}, um die eigentliche Sperrung des Bildschirms durchzuführen, wenn es den Zeitpunkt dafür gekommen sieht, weil Sie z.B.@: Ihr Gerät in den Energiesparmodus versetzen."
  3224. #. type: Plain text
  3225. #: guix-git/doc/guix-cookbook.texi:2024
  3226. msgid "For slock to be allowed to be a screen locker for the graphical session, it needs to be made setuid-root so it can authenticate users, and it needs a PAM service. This can be achieved by adding the following service to your @file{config.scm}:"
  3227. msgstr "Damit slock aber überhaupt die Berechtigung dafür erteilt bekommt, Bildschirme grafischer Sitzungen zu sperren, muss es als setuid-root eingestellt sein, wodurch es Benutzer authentifizieren kann, außerdem braucht es Einstellungen im PAM-Dienst. Um das bereitzustellen, tragen Sie den folgenden Dienst in Ihre @file{config.scm} ein:"
  3228. #. type: lisp
  3229. #: guix-git/doc/guix-cookbook.texi:2027
  3230. #, no-wrap
  3231. msgid "(screen-locker-service slock)\n"
  3232. msgstr "(screen-locker-service slock)\n"
  3233. #. type: Plain text
  3234. #: guix-git/doc/guix-cookbook.texi:2033
  3235. msgid "If you manually lock your screen, e.g. by directly calling slock when you want to lock your screen but not suspend it, it's a good idea to notify xss-lock about this so no confusion occurs. This can be done by executing @code{xset s activate} immediately before you execute slock."
  3236. msgstr "Wenn Sie Ihren Bildschirm manuell sperren, z.B.@: indem Sie slock direkt aufrufen, wenn Sie Ihren Bildschirm sperren wollen, ohne in den Energiesparmodus zu wechseln, dann ist es eine gute Idee, das auch xss-lock mitzuteilen, indem Sie @code{xset s activate} direkt vor slock ausführen."
  3237. #. type: cindex
  3238. #: guix-git/doc/guix-cookbook.texi:2036
  3239. #, no-wrap
  3240. msgid "linode, Linode"
  3241. msgstr "linode, Linode"
  3242. #. type: Plain text
  3243. #: guix-git/doc/guix-cookbook.texi:2041
  3244. msgid "To run Guix on a server hosted by @uref{https://www.linode.com, Linode}, start with a recommended Debian server. We recommend using the default distro as a way to bootstrap Guix. Create your SSH keys."
  3245. msgstr "Um Guix auf einem durch @uref{https://www.linode.com, Linode} bereitgestellten, „gehosteten“ Server zu benutzen, richten Sie zunächst einen dort empfohlenen Debian-Server ein. Unsere Empfehlung ist, zum Wechsel auf Guix mit der voreingestellten Distribution anzufangen. Erzeugen Sie Ihre SSH-Schlüssel."
  3246. #. type: example
  3247. #: guix-git/doc/guix-cookbook.texi:2044
  3248. #, no-wrap
  3249. msgid "ssh-keygen\n"
  3250. msgstr "ssh-keygen\n"
  3251. #. type: Plain text
  3252. #: guix-git/doc/guix-cookbook.texi:2050
  3253. msgid "Be sure to add your SSH key for easy login to the remote server. This is trivially done via Linode's graphical interface for adding SSH keys. Go to your profile and click add SSH Key. Copy into it the output of:"
  3254. msgstr "Stellen Sie sicher, dass Ihr SSH-Schlüssel zur leichten Anmeldung auf dem entfernten Server eingerichtet ist. Das können Sie leicht mit Linodes grafischer Oberfläche zum Hinzufügen von SSH-Schlüsseln bewerkstelligen. Gehen Sie dazu in Ihr Profil und klicken Sie auf die Funktion zum Hinzufügen eines SSH-Schlüssels. Kopieren Sie dort hinein die Ausgabe von:"
  3255. #. type: example
  3256. #: guix-git/doc/guix-cookbook.texi:2053
  3257. #, no-wrap
  3258. msgid "cat ~/.ssh/<username>_rsa.pub\n"
  3259. msgstr "cat ~/.ssh/<benutzername>_rsa.pub\n"
  3260. #. type: Plain text
  3261. #: guix-git/doc/guix-cookbook.texi:2056
  3262. msgid "Power the Linode down."
  3263. msgstr ""
  3264. #. type: Plain text
  3265. #: guix-git/doc/guix-cookbook.texi:2060
  3266. msgid "In the Linode's Storage tab, resize the Debian disk to be smaller. 30 GB free space is recommended. Then click \"Add a disk\", and fill out the form with the following:"
  3267. msgstr ""
  3268. #. type: itemize
  3269. #: guix-git/doc/guix-cookbook.texi:2064
  3270. msgid "Label: \"Guix\""
  3271. msgstr "Label: \"Guix\""
  3272. #. type: itemize
  3273. #: guix-git/doc/guix-cookbook.texi:2067
  3274. msgid "Filesystem: ext4"
  3275. msgstr "Filesystem: ext4"
  3276. #. type: itemize
  3277. #: guix-git/doc/guix-cookbook.texi:2070
  3278. msgid "Set it to the remaining size"
  3279. msgstr "Wählen Sie als Größe den übrigen Speicherplatz."
  3280. #. type: Plain text
  3281. #: guix-git/doc/guix-cookbook.texi:2075
  3282. msgid "In the Configurations tab, press \"Edit\" on the default Debian profile. Under \"Block Device Assignment\" click \"Add a Device\". It should be @file{/dev/sdc} and you can select the \"Guix\" disk. Save Changes."
  3283. msgstr ""
  3284. #. type: Plain text
  3285. #: guix-git/doc/guix-cookbook.texi:2077
  3286. msgid "Now \"Add a Configuration\", with the following:"
  3287. msgstr "Fügen Sie eine Konfiguration hinzu („Add a Configuration“) mit folgenden Eigenschaften:"
  3288. #. type: itemize
  3289. #: guix-git/doc/guix-cookbook.texi:2080
  3290. msgid "Label: Guix"
  3291. msgstr "Label: Guix"
  3292. #. type: itemize
  3293. #: guix-git/doc/guix-cookbook.texi:2083
  3294. msgid "Kernel:GRUB 2 (it's at the bottom! This step is @b{IMPORTANT!})"
  3295. msgstr "Kernel: GRUB 2 (Das steht ganz unten! Dieser Schritt ist @b{WICHTIG!})"
  3296. #. type: itemize
  3297. #: guix-git/doc/guix-cookbook.texi:2086
  3298. msgid "Block device assignment:"
  3299. msgstr "Block device assignment:"
  3300. #. type: itemize
  3301. #: guix-git/doc/guix-cookbook.texi:2089
  3302. msgid "@file{/dev/sda}: Guix"
  3303. msgstr "@file{/dev/sda}: Guix"
  3304. #. type: itemize
  3305. #: guix-git/doc/guix-cookbook.texi:2092
  3306. msgid "@file{/dev/sdb}: swap"
  3307. msgstr "@file{/dev/sdb}: swap"
  3308. #. type: itemize
  3309. #: guix-git/doc/guix-cookbook.texi:2095
  3310. msgid "Root device: @file{/dev/sda}"
  3311. msgstr "Root device: @file{/dev/sda}"
  3312. #. type: itemize
  3313. #: guix-git/doc/guix-cookbook.texi:2098
  3314. msgid "Turn off all the filesystem/boot helpers"
  3315. msgstr "Schalten Sie alle Dateisystem-/Boot-Helfer ab."
  3316. #. type: Plain text
  3317. #: guix-git/doc/guix-cookbook.texi:2105
  3318. #, fuzzy
  3319. #| msgid "Now power it back up, picking the Debian configuration. Once it's booted up, ssh in your server via @code{ssh root@@@var{<your-server-IP-here>}}. (You can find your server IP address in your Linode Summary section.) Now you can run the \"install guix from @pxref{Binary Installation,,, guix, GNU Guix}\" steps:"
  3320. msgid "Now power it back up, booting with the Debian configuration. Once it's running, ssh to your server via @code{ssh root@@@var{<your-server-IP-here>}}. (You can find your server IP address in your Linode Summary section.) Now you can run the \"install guix from @pxref{Binary Installation,,, guix, GNU Guix}\" steps:"
  3321. msgstr "Starten Sie den Knoten jetzt wieder mit der Debian-Konfiguration. Sobald er wieder läuft, verbinden Sie sich mittels SSH zu Ihrem Server über @code{ssh root@@@var{<IP-Adresse-Ihres-Servers>}}. (Die IP-Adresse Ihres Servers finden Sie in Linodes Übersichtsseite bei „Summary“.) Nun können Sie mit den Schritten aus dem @ref{Aus Binärdatei installieren,,, guix.de, Referenzhandbuch zu GNU Guix} weitermachen:"
  3322. #. type: example
  3323. #: guix-git/doc/guix-cookbook.texi:2113
  3324. #, no-wrap
  3325. msgid ""
  3326. "sudo apt-get install gpg\n"
  3327. "wget https://sv.gnu.org/people/viewgpg.php?user_id=15145 -qO - | gpg --import -\n"
  3328. "wget https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh\n"
  3329. "chmod +x guix-install.sh\n"
  3330. "./guix-install.sh\n"
  3331. "guix pull\n"
  3332. msgstr ""
  3333. "sudo apt-get install gpg\n"
  3334. "wget https://sv.gnu.org/people/viewgpg.php?user_id=15145 -qO - | gpg --import -\n"
  3335. "wget https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh\n"
  3336. "chmod +x guix-install.sh\n"
  3337. "./guix-install.sh\n"
  3338. "guix pull\n"
  3339. #. type: Plain text
  3340. #: guix-git/doc/guix-cookbook.texi:2117
  3341. msgid "Now it's time to write out a config for the server. The key information is below. Save the resulting file as @file{guix-config.scm}."
  3342. msgstr "Nun wird es Zeit, eine Konfiguration für den Server anzulegen. Die wichtigsten Informationen finden Sie hierunter. Speichern Sie die Konfiguration als @file{guix-config.scm}."
  3343. #. type: lisp
  3344. #: guix-git/doc/guix-cookbook.texi:2128
  3345. #, no-wrap
  3346. msgid ""
  3347. "(use-modules (gnu)\n"
  3348. " (guix modules))\n"
  3349. "(use-service-modules networking\n"
  3350. " ssh)\n"
  3351. "(use-package-modules admin\n"
  3352. " certs\n"
  3353. " package-management\n"
  3354. " ssh\n"
  3355. " tls)\n"
  3356. "\n"
  3357. msgstr ""
  3358. "(use-modules (gnu)\n"
  3359. " (guix modules))\n"
  3360. "(use-service-modules networking\n"
  3361. " ssh)\n"
  3362. "(use-package-modules admin\n"
  3363. " certs\n"
  3364. " package-management\n"
  3365. " ssh\n"
  3366. " tls)\n"
  3367. "\n"
  3368. #. type: lisp
  3369. #: guix-git/doc/guix-cookbook.texi:2145
  3370. #, no-wrap
  3371. msgid ""
  3372. "(operating-system\n"
  3373. " (host-name \"my-server\")\n"
  3374. " (timezone \"America/New_York\")\n"
  3375. " (locale \"en_US.UTF-8\")\n"
  3376. " ;; This goofy code will generate the grub.cfg\n"
  3377. " ;; without installing the grub bootloader on disk.\n"
  3378. " (bootloader (bootloader-configuration\n"
  3379. " (bootloader\n"
  3380. " (bootloader\n"
  3381. " (inherit grub-bootloader)\n"
  3382. " (installer #~(const #true))))))\n"
  3383. " (file-systems (cons (file-system\n"
  3384. " (device \"/dev/sda\")\n"
  3385. " (mount-point \"/\")\n"
  3386. " (type \"ext4\"))\n"
  3387. " %base-file-systems))\n"
  3388. "\n"
  3389. msgstr ""
  3390. "(operating-system\n"
  3391. " (host-name \"my-server\")\n"
  3392. " (timezone \"America/New_York\")\n"
  3393. " (locale \"en_US.UTF-8\")\n"
  3394. " ;; Dieser komisch aussehende Code wird eine grub.cfg\n"
  3395. " ;; anlegen ohne den GRUB-Bootloader auf die\n"
  3396. " ;; Platte zu installieren.\n"
  3397. " (bootloader (bootloader-configuration\n"
  3398. " (bootloader\n"
  3399. " (bootloader\n"
  3400. " (inherit grub-bootloader)\n"
  3401. " (installer #~(const #true))))))\n"
  3402. " (file-systems (cons (file-system\n"
  3403. " (device \"/dev/sda\")\n"
  3404. " (mount-point \"/\")\n"
  3405. " (type \"ext4\"))\n"
  3406. " %base-file-systems))\n"
  3407. "\n"
  3408. #. type: lisp
  3409. #: guix-git/doc/guix-cookbook.texi:2148
  3410. #, no-wrap
  3411. msgid ""
  3412. " (swap-devices (list \"/dev/sdb\"))\n"
  3413. "\n"
  3414. msgstr ""
  3415. " (swap-devices (list \"/dev/sdb\"))\n"
  3416. "\n"
  3417. #. type: lisp
  3418. #: guix-git/doc/guix-cookbook.texi:2152
  3419. #, no-wrap
  3420. msgid ""
  3421. " (initrd-modules (cons \"virtio_scsi\" ; Needed to find the disk\n"
  3422. " %base-initrd-modules))\n"
  3423. "\n"
  3424. msgstr ""
  3425. " (initrd-modules (cons \"virtio_scsi\" ; Um die Platte zu finden\n"
  3426. " %base-initrd-modules))\n"
  3427. "\n"
  3428. #. type: lisp
  3429. #: guix-git/doc/guix-cookbook.texi:2161
  3430. #, no-wrap
  3431. msgid ""
  3432. " (users (cons (user-account\n"
  3433. " (name \"janedoe\")\n"
  3434. " (group \"users\")\n"
  3435. " ;; Adding the account to the \"wheel\" group\n"
  3436. " ;; makes it a sudoer.\n"
  3437. " (supplementary-groups '(\"wheel\"))\n"
  3438. " (home-directory \"/home/janedoe\"))\n"
  3439. " %base-user-accounts))\n"
  3440. "\n"
  3441. msgstr ""
  3442. " (users (cons (user-account\n"
  3443. " (name \"janedoe\")\n"
  3444. " (group \"users\")\n"
  3445. " ;; Durch Hinzufügen zur \"wheel\"-Gruppe\n"
  3446. " ;; wird das Konto zum Sudoer.\n"
  3447. " (supplementary-groups '(\"wheel\"))\n"
  3448. " (home-directory \"/home/janedoe\"))\n"
  3449. " %base-user-accounts))\n"
  3450. "\n"
  3451. #. type: lisp
  3452. #: guix-git/doc/guix-cookbook.texi:2165
  3453. #, no-wrap
  3454. msgid ""
  3455. " (packages (cons* nss-certs ;for HTTPS access\n"
  3456. " openssh-sans-x\n"
  3457. " %base-packages))\n"
  3458. "\n"
  3459. msgstr ""
  3460. " (packages (cons* nss-certs ;für HTTPS-Zugriff\n"
  3461. " openssh-sans-x\n"
  3462. " %base-packages))\n"
  3463. "\n"
  3464. #. type: lisp
  3465. #: guix-git/doc/guix-cookbook.texi:2176
  3466. #, no-wrap
  3467. msgid ""
  3468. " (services (cons*\n"
  3469. " (service dhcp-client-service-type)\n"
  3470. " (service openssh-service-type\n"
  3471. " (openssh-configuration\n"
  3472. " (openssh openssh-sans-x)\n"
  3473. " (password-authentication? #false)\n"
  3474. " (authorized-keys\n"
  3475. " `((\"janedoe\" ,(local-file \"janedoe_rsa.pub\"))\n"
  3476. " (\"root\" ,(local-file \"janedoe_rsa.pub\"))))))\n"
  3477. " %base-services)))\n"
  3478. msgstr ""
  3479. " (services (cons*\n"
  3480. " (service dhcp-client-service-type)\n"
  3481. " (service openssh-service-type\n"
  3482. " (openssh-configuration\n"
  3483. " (openssh openssh-sans-x)\n"
  3484. " (password-authentication? #false)\n"
  3485. " (authorized-keys\n"
  3486. " `((\"janedoe\" ,(local-file \"janedoe_rsa.pub\"))\n"
  3487. " (\"root\" ,(local-file \"janedoe_rsa.pub\"))))))\n"
  3488. " %base-services)))\n"
  3489. #. type: Plain text
  3490. #: guix-git/doc/guix-cookbook.texi:2179
  3491. msgid "Replace the following fields in the above configuration:"
  3492. msgstr "Ersetzen Sie in der obigen Konfiguration aber folgende Felder:"
  3493. #. type: lisp
  3494. #: guix-git/doc/guix-cookbook.texi:2187
  3495. #, no-wrap
  3496. msgid ""
  3497. "(host-name \"my-server\") ; replace with your server name\n"
  3498. "; if you chose a linode server outside the U.S., then\n"
  3499. "; use tzselect to find a correct timezone string\n"
  3500. "(timezone \"America/New_York\") ; if needed replace timezone\n"
  3501. "(name \"janedoe\") ; replace with your username\n"
  3502. "(\"janedoe\" ,(local-file \"janedoe_rsa.pub\")) ; replace with your ssh key\n"
  3503. "(\"root\" ,(local-file \"janedoe_rsa.pub\")) ; replace with your ssh key\n"
  3504. msgstr ""
  3505. "(host-name \"my-server\") ; hier sollte Ihr Servername stehen\n"
  3506. "; Wenn Sie sich einen Linode-Server außerhalb der USA ausgesucht\n"
  3507. "; haben, finden Sie mit tzselect die richtige Zeitzonenangabe.\n"
  3508. "(timezone \"America/New_York\") ; Zeitzone ersetzen wenn nötig\n"
  3509. "(name \"janedoe\") ; Ersetzen durch Ihren Benutzernamen\n"
  3510. "(\"janedoe\" ,(local-file \"janedoe_rsa.pub\")) ; Ersetzen durch Ihren SSH-Schlüssel\n"
  3511. "(\"root\" ,(local-file \"janedoe_rsa.pub\")) ; Ersetzen durch Ihren SSH-Schlüssel\n"
  3512. #. type: Plain text
  3513. #: guix-git/doc/guix-cookbook.texi:2194
  3514. #, fuzzy
  3515. #| msgid "The last line in the above example lets you log into the server as root and set the initial root password. After you have done this, you may delete that line from your configuration and reconfigure to prevent root login."
  3516. msgid "The last line in the above example lets you log into the server as root and set the initial root password (see the note at the end of this recipe about root login). After you have done this, you may delete that line from your configuration and reconfigure to prevent root login."
  3517. msgstr "Durch die letzte Zeile im obigen Beispiel können Sie sich als Administratornutzer root auf dem Server anmelden und das anfängliche Passwort für root festlegen. Nachdem das erledigt ist, können Sie die Zeile aus Ihrer Konfiguration löschen und Ihr System rekonfigurieren, damit eine Anmeldung als root nicht mehr möglich ist."
  3518. #. type: Plain text
  3519. #: guix-git/doc/guix-cookbook.texi:2199
  3520. #, fuzzy
  3521. #| msgid "Save your ssh public key (eg: @file{~/.ssh/id_rsa.pub}) as @file{@var{<your-username-here>}_rsa.pub} and your @file{guix-config.scm} in the same directory. In a new terminal run these commands."
  3522. msgid "Copy your ssh public key (eg: @file{~/.ssh/id_rsa.pub}) as @file{@var{<your-username-here>}_rsa.pub} and put @file{guix-config.scm} in the same directory. In a new terminal run these commands."
  3523. msgstr "Speichern Sie Ihren öffentlichen SSH-Schlüssel (z.B.@: @file{~/.ssh/id_rsa.pub}) als @file{@var{<Ihr-Benutzername>}_rsa.pub} und Ihre @file{guix-config.scm} im selben Verzeichnis. Führen Sie dann diese Befehle in einem neuen Terminal aus:"
  3524. #. type: example
  3525. #: guix-git/doc/guix-cookbook.texi:2204
  3526. #, fuzzy, no-wrap
  3527. #| msgid ""
  3528. #| "sftp root@@<remote server ip address>\n"
  3529. #| "put /home/<username>/ssh/id_rsa.pub .\n"
  3530. #| "put /path/to/linode/guix-config.scm .\n"
  3531. msgid ""
  3532. "sftp root@@<remote server ip address>\n"
  3533. "put /path/to/files/<username>_rsa.pub .\n"
  3534. "put /path/to/files/guix-config.scm .\n"
  3535. msgstr ""
  3536. "sftp root@@<IP-Adresse-des-entfernten-Servers>\n"
  3537. "put /home/<Benutzername>/ssh/id_rsa.pub .\n"
  3538. "put /pfad/zu/linode/guix-config.scm .\n"
  3539. #. type: Plain text
  3540. #: guix-git/doc/guix-cookbook.texi:2207
  3541. msgid "In your first terminal, mount the guix drive:"
  3542. msgstr "Binden Sie mit Ihrem ersten Terminal das Guix-Laufwerk ein:"
  3543. #. type: example
  3544. #: guix-git/doc/guix-cookbook.texi:2211
  3545. #, no-wrap
  3546. msgid ""
  3547. "mkdir /mnt/guix\n"
  3548. "mount /dev/sdc /mnt/guix\n"
  3549. msgstr ""
  3550. "mkdir /mnt/guix\n"
  3551. "mount /dev/sdc /mnt/guix\n"
  3552. #. type: Plain text
  3553. #: guix-git/doc/guix-cookbook.texi:2216
  3554. #, fuzzy
  3555. #| msgid "Due to the way we set things up above, we do not install GRUB completely. Instead we install only our grub configuration file. So we need to copy over some of the other GRUB stuff that is already there:"
  3556. msgid "Due to the way we set up the bootloader section of the guix-config.scm, only the grub configuration file will be installed. So, we need to copy over some of the other GRUB stuff already installed on the Debian system:"
  3557. msgstr "Aufgrund der Art und Weise, wie alles oben eingerichtet haben, installieren wir GRUB nicht vollständig. Stattdessen installieren wir nur unsere GRUB-Konfigurationsdatei. Daher müssen wir ein bisschen von den anderen GRUB-Einstellungen von dort kopieren:"
  3558. #. type: example
  3559. #: guix-git/doc/guix-cookbook.texi:2220
  3560. #, no-wrap
  3561. msgid ""
  3562. "mkdir -p /mnt/guix/boot/grub\n"
  3563. "cp -r /boot/grub/* /mnt/guix/boot/grub/\n"
  3564. msgstr ""
  3565. "mkdir -p /mnt/guix/boot/grub\n"
  3566. "cp -r /boot/grub/* /mnt/guix/boot/grub/\n"
  3567. #. type: Plain text
  3568. #: guix-git/doc/guix-cookbook.texi:2223
  3569. msgid "Now initialize the Guix installation:"
  3570. msgstr "Initialisieren Sie nun die Guix-Installation:"
  3571. #. type: example
  3572. #: guix-git/doc/guix-cookbook.texi:2226
  3573. #, no-wrap
  3574. msgid "guix system init guix-config.scm /mnt/guix\n"
  3575. msgstr "guix system init guix-config.scm /mnt/guix\n"
  3576. #. type: Plain text
  3577. #: guix-git/doc/guix-cookbook.texi:2230
  3578. msgid "Ok, power it down! Now from the Linode console, select boot and select \"Guix\"."
  3579. msgstr "OK, fahren Sie Ihn jetzt herunter! Von der Linode-Konsole wählen Sie Booten aus und wählen „Guix“."
  3580. #. type: Plain text
  3581. #: guix-git/doc/guix-cookbook.texi:2233
  3582. msgid "Once it boots, you should be able to log in via SSH! (The server config will have changed though.) You may encounter an error like:"
  3583. msgstr "Sobald es gestartet ist, sollten Sie sich über SSH anmelden können! (Allerdings wird sich die Serverkonfiguration geändert haben.) Ihnen könnte eine Fehlermeldung wie diese hier gezeigt werden:"
  3584. #. type: example
  3585. #: guix-git/doc/guix-cookbook.texi:2249
  3586. #, no-wrap
  3587. msgid ""
  3588. "$ ssh root@@<server ip address>\n"
  3589. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n"
  3590. "@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @\n"
  3591. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n"
  3592. "IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!\n"
  3593. "Someone could be eavesdropping on you right now (man-in-the-middle attack)!\n"
  3594. "It is also possible that a host key has just been changed.\n"
  3595. "The fingerprint for the ECDSA key sent by the remote host is\n"
  3596. "SHA256:0B+wp33w57AnKQuHCvQP0+ZdKaqYrI/kyU7CfVbS7R4.\n"
  3597. "Please contact your system administrator.\n"
  3598. "Add correct host key in /home/joshua/.ssh/known_hosts to get rid of this message.\n"
  3599. "Offending ECDSA key in /home/joshua/.ssh/known_hosts:3\n"
  3600. "ECDSA host key for 198.58.98.76 has changed and you have requested strict checking.\n"
  3601. "Host key verification failed.\n"
  3602. msgstr ""
  3603. "$ ssh root@@<server ip address>\n"
  3604. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n"
  3605. "@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @\n"
  3606. "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\n"
  3607. "IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!\n"
  3608. "Someone could be eavesdropping on you right now (man-in-the-middle attack)!\n"
  3609. "It is also possible that a host key has just been changed.\n"
  3610. "The fingerprint for the ECDSA key sent by the remote host is\n"
  3611. "SHA256:0B+wp33w57AnKQuHCvQP0+ZdKaqYrI/kyU7CfVbS7R4.\n"
  3612. "Please contact your system administrator.\n"
  3613. "Add correct host key in /home/joshua/.ssh/known_hosts to get rid of this message.\n"
  3614. "Offending ECDSA key in /home/joshua/.ssh/known_hosts:3\n"
  3615. "ECDSA host key for 198.58.98.76 has changed and you have requested strict checking.\n"
  3616. "Host key verification failed.\n"
  3617. #. type: Plain text
  3618. #: guix-git/doc/guix-cookbook.texi:2253
  3619. msgid "Either delete @file{~/.ssh/known_hosts} file, or delete the offending line starting with your server IP address."
  3620. msgstr "Löschen Sie entweder die ganze Datei @file{~/.ssh/known_hosts} oder nur die ungültig gewordene Zeile, die mit der IP-Adresse Ihres Servers beginnt."
  3621. #. type: Plain text
  3622. #: guix-git/doc/guix-cookbook.texi:2255
  3623. msgid "Be sure to set your password and root's password."
  3624. msgstr "Denken Sie daran, Ihr Passwort und das Passwort des Administratornutzers root festzulegen."
  3625. #. type: example
  3626. #: guix-git/doc/guix-cookbook.texi:2260
  3627. #, no-wrap
  3628. msgid ""
  3629. "ssh root@@<remote ip address>\n"
  3630. "passwd ; for the root password\n"
  3631. "passwd <username> ; for the user password\n"
  3632. msgstr ""
  3633. "ssh root@@<IP-Adresse-des-entfernten-Servers>\n"
  3634. "passwd ; für das root-Passswort\n"
  3635. "passwd <benutzername> ; für das Passwort des normalen Benutzers\n"
  3636. #. type: Plain text
  3637. #: guix-git/doc/guix-cookbook.texi:2267
  3638. msgid "You may not be able to run the above commands at this point. If you have issues remotely logging into your linode box via SSH, then you may still need to set your root and user password initially by clicking on the ``Launch Console'' option in your linode. Choose the ``Glish'' instead of ``Weblish''. Now you should be able to ssh into the machine."
  3639. msgstr "Es kann sein, dass die obigen Befehle noch nicht funktionieren. Wenn Sie Probleme haben, sich aus der Ferne über SSH bei Ihrer Linode-Kiste anzumelden, dann müssen Sie vielleicht Ihr anfängliches Passwort für root und das normale Benutzerkonto festlegen, indem Sie auf die „Launch Console“-Option in Ihrer Linode klicken. Wählen Sie „Glish“ statt „Weblish“. Jetzt sollten Sie über SSH in Ihre Maschine ’reinkommen."
  3640. #. type: Plain text
  3641. #: guix-git/doc/guix-cookbook.texi:2271
  3642. #, fuzzy
  3643. #| msgid "Horray! At this point you can shut down the server, delete the Debian disk, and resize the Guix to the rest of the size. Congratulations!"
  3644. msgid "Hooray! At this point you can shut down the server, delete the Debian disk, and resize the Guix to the rest of the size. Congratulations!"
  3645. msgstr "Hurra! Nun können Sie den Server herunterfahren, die Debian-Platte löschen und Guix auf den gesamten verfügbaren Speicher erweitern. Herzlichen Glückwunsch!"
  3646. #. type: Plain text
  3647. #: guix-git/doc/guix-cookbook.texi:2276
  3648. msgid "By the way, if you save it as a disk image right at this point, you'll have an easy time spinning up new Guix images! You may need to down-size the Guix image to 6144MB, to save it as an image. Then you can resize it again to the max size."
  3649. msgstr "Übrigens, wenn Sie das Ergebnis jetzt als „Disk Image“ speichern, können Sie neue Guix-Abbilder von da an leicht einrichten! Vielleicht müssen Sie die Größe des Guix-Abbilds auf 6144MB verkleinern, um es als Abbild speichern zu können. Danach können Sie es wieder auf die Maximalgröße vergrößern."
  3650. #. type: Plain text
  3651. #: guix-git/doc/guix-cookbook.texi:2285
  3652. msgid "To bind mount a file system, one must first set up some definitions before the @code{operating-system} section of the system definition. In this example we will bind mount a folder from a spinning disk drive to @file{/tmp}, to save wear and tear on the primary SSD, without dedicating an entire partition to be mounted as @file{/tmp}."
  3653. msgstr "Um ein Dateisystem per „bind mount“ einzubinden, braucht man zunächst ein paar Definitionen. Fügen Sie diese noch vor dem @code{operating-system}-Abschnitt Ihrer Systemdefinition ein. In diesem Beispiel binden wir ein Verzeichnis auf einem Magnetfestplattenlaufwerk an @file{/tmp}, um die primäre SSD weniger abzunutzen, ohne dass wir extra eine ganze Partition für @file{/tmp} erzeugen müssen."
  3654. #. type: Plain text
  3655. #: guix-git/doc/guix-cookbook.texi:2288
  3656. msgid "First, the source drive that hosts the folder we wish to bind mount should be defined, so that the bind mount can depend on it."
  3657. msgstr "Als Erstes sollten wir das Quelllaufwerk definieren, wo wir das Verzeichnis für den Bind-Mount unterbringen. Dann kann der Bind-Mount es als Abhängigkeit benutzen."
  3658. #. type: lisp
  3659. #: guix-git/doc/guix-cookbook.texi:2295
  3660. #, no-wrap
  3661. msgid ""
  3662. "(define source-drive ;; \"source-drive\" can be named anything you want.\n"
  3663. " (file-system\n"
  3664. " (device (uuid \"UUID goes here\"))\n"
  3665. " (mount-point \"/path-to-spinning-disk-goes-here\")\n"
  3666. " (type \"ext4\"))) ;; Make sure to set this to the appropriate type for your drive.\n"
  3667. msgstr ""
  3668. "(define quelllaufwerk ;; \"quelllaufwerk\" kann man nennen, wie man will\n"
  3669. " (file-system\n"
  3670. " (device (uuid \"hier kommt die UUID hin\"))\n"
  3671. " (mount-point \"/hier-der-pfad-zur-magnetfestplatte\")\n"
  3672. " (type \"ext4\"))) ;; Legen Sie den dazu passenden Typ fest.\n"
  3673. #. type: Plain text
  3674. #: guix-git/doc/guix-cookbook.texi:2299
  3675. msgid "The source folder must also be defined, so that guix will know it's not a regular block device, but a folder."
  3676. msgstr "Auch das Quellverzeichnis muss so definiert werden, dass Guix es nicht für ein reguläres blockorientiertes Gerät hält, sondern es als Verzeichnis erkennt."
  3677. #. type: lisp
  3678. #: guix-git/doc/guix-cookbook.texi:2301
  3679. #, no-wrap
  3680. msgid "(define (%source-directory) \"/path-to-spinning-disk-goes-here/tmp\") ;; \"source-directory\" can be named any valid variable name.\n"
  3681. msgstr "(define (%quellverzeichnis) \"/hier-der-pfad-zur-magnetfestplatte/tmp\") ;; Dem \"quellverzeichnis\" kann man einen beliebigen gültigen Variablennamen geben.\n"
  3682. #. type: Plain text
  3683. #: guix-git/doc/guix-cookbook.texi:2305
  3684. msgid "Finally, inside the @code{file-systems} definition, we must add the mount itself."
  3685. msgstr "In der Definition des @code{file-systems}-Felds müssen wir die Einbindung einfügen."
  3686. #. type: lisp
  3687. #: guix-git/doc/guix-cookbook.texi:2308
  3688. #, no-wrap
  3689. msgid ""
  3690. "(file-systems (cons*\n"
  3691. "\n"
  3692. msgstr ""
  3693. "(file-systems (cons*\n"
  3694. "\n"
  3695. #. type: lisp
  3696. #: guix-git/doc/guix-cookbook.texi:2310
  3697. #, no-wrap
  3698. msgid ""
  3699. " ...<other drives omitted for clarity>...\n"
  3700. "\n"
  3701. msgstr ""
  3702. " …<hier würden andere Laufwerke stehen>…\n"
  3703. "\n"
  3704. #. type: lisp
  3705. #: guix-git/doc/guix-cookbook.texi:2312
  3706. #, no-wrap
  3707. msgid ""
  3708. " source-drive ;; Must match the name you gave the source drive in the earlier definition.\n"
  3709. "\n"
  3710. msgstr ""
  3711. " quelllaufwerk ;; Muss dem Namen entsprechen, den Sie vorher ans Quelllaufwerk vergeben haben.\n"
  3712. "\n"
  3713. #. type: lisp
  3714. #: guix-git/doc/guix-cookbook.texi:2320
  3715. #, no-wrap
  3716. msgid ""
  3717. " (file-system\n"
  3718. " (device (%source-directory)) ;; Make sure \"source-directory\" matches your earlier definition.\n"
  3719. " (mount-point \"/tmp\")\n"
  3720. " (type \"none\") ;; We are mounting a folder, not a partition, so this type needs to be \"none\"\n"
  3721. " (flags '(bind-mount))\n"
  3722. " (dependencies (list source-drive)) ;; Ensure \"source-drive\" matches what you've named the variable for the drive.\n"
  3723. " )\n"
  3724. "\n"
  3725. msgstr ""
  3726. " (file-system\n"
  3727. " (device (%quellverzeichnis)) ;; Geben Sie Acht, dass das \"quellverzeichnis\" so heißt wie in der Definition vorher.\n"
  3728. " (mount-point \"/tmp\")\n"
  3729. " (type \"none\") ;; Wir binden ein Verzeichnis und keine Partition ein, daher muss dieser Typ \"none\" sein.\n"
  3730. " (flags '(bind-mount))\n"
  3731. " (dependencies (list quelllaufwerk)) ;; Geben Sie Acht, dass \"quelllaufwerk\" dem Namen entspricht, den Sie der Variablen für das Laufwerk gegeben haben.\n"
  3732. " )\n"
  3733. "\n"
  3734. #. type: lisp
  3735. #: guix-git/doc/guix-cookbook.texi:2322
  3736. #, no-wrap
  3737. msgid ""
  3738. " ...<other drives omitted for clarity>...\n"
  3739. "\n"
  3740. msgstr ""
  3741. " …<hier würden andere Laufwerke stehen>…\n"
  3742. "\n"
  3743. #. type: lisp
  3744. #: guix-git/doc/guix-cookbook.texi:2324
  3745. #, no-wrap
  3746. msgid " ))\n"
  3747. msgstr " ))\n"
  3748. #. type: Plain text
  3749. #: guix-git/doc/guix-cookbook.texi:2331
  3750. msgid "Guix daemon can use a HTTP proxy to get substitutes, here we are configuring it to get them via Tor."
  3751. msgstr "Der Guix-Daemon kann einen HTTP-Proxy benutzen, wenn er Substitute herunterlädt. Wir wollen ihn hier so konfigurieren, dass Substitute über Tor bezogen werden."
  3752. #. type: quotation
  3753. #: guix-git/doc/guix-cookbook.texi:2332
  3754. #, no-wrap
  3755. msgid "Warning"
  3756. msgstr "Warnung"
  3757. #. type: quotation
  3758. #: guix-git/doc/guix-cookbook.texi:2338
  3759. msgid "@emph{Not all} Guix daemon's traffic will go through Tor! Only HTTP/HTTPS will get proxied; FTP, Git protocol, SSH, etc connections will still go through the clearnet. Again, this configuration isn't foolproof some of your traffic won't get routed by Tor at all. Use it at your own risk."
  3760. msgstr "@emph{Nicht aller} Datenverkehr des Guix-Daemons wird dadurch über Tor laufen! Nur HTTP und HTTPS durchläuft den Proxy, @emph{nicht} so ist es bei FTP, dem Git-Protokokl, SSH etc.@:, diese laufen weiterhin durch’s „Clearnet“. Die Konfiguration ist also @emph{nicht} narrensicher; ein Teil Ihres Datenverkehrs wird gar nicht über Tor geleitet. Verwenden Sie sie nur auf Ihr eigenes Risiko!"
  3761. #. type: quotation
  3762. #: guix-git/doc/guix-cookbook.texi:2344
  3763. msgid "Also note that the procedure described here applies only to package substitution. When you update your guix distribution with @command{guix pull}, you still need to use @command{torsocks} if you want to route the connection to guix's git repository servers through Tor."
  3764. msgstr "Beachten Sie außerdem, dass sich die hier beschriebene Prozedur nur auf Paketsubstitute bezieht. Wenn Sie Ihre Guix-Distribution mit @command{guix pull} aktualisieren, müssen Sie noch immer @command{torsocks} benutzen, wenn Sie die Verbindung zu Guix’ Git-Repository über Tor leiten wollen."
  3765. #. type: Plain text
  3766. #: guix-git/doc/guix-cookbook.texi:2349
  3767. msgid "Guix's substitute server is available as a Onion service, if you want to use it to get your substitutes through Tor configure your system as follow:"
  3768. msgstr "Der Substitutserver von Guix ist als Onion-Dienst verfügbar, wenn Sie ihn benutzen möchten, um Ihre Substitute über Tor zu laden, dann konfigurieren Sie Ihr System wie folgt:"
  3769. #. type: lisp
  3770. #: guix-git/doc/guix-cookbook.texi:2353
  3771. #, no-wrap
  3772. msgid ""
  3773. "(use-modules (gnu))\n"
  3774. "(use-service-module base networking)\n"
  3775. "\n"
  3776. msgstr ""
  3777. "(use-modules (gnu))\n"
  3778. "(use-service-module base networking)\n"
  3779. "\n"
  3780. #. type: lisp
  3781. #: guix-git/doc/guix-cookbook.texi:2369
  3782. #, no-wrap
  3783. msgid ""
  3784. "(operating-system\n"
  3785. " …\n"
  3786. " (services\n"
  3787. " (cons\n"
  3788. " (service tor-service-type\n"
  3789. " (tor-configuration\n"
  3790. " (config-file (plain-file \"tor-config\"\n"
  3791. " \"HTTPTunnelPort 127.0.0.1:9250\"))))\n"
  3792. " (modify-services %base-services\n"
  3793. " (guix-service-type\n"
  3794. " config => (guix-configuration\n"
  3795. " (inherit config)\n"
  3796. " ;; ci.guix.gnu.org's Onion service\n"
  3797. " (substitute-urls \"https://bp7o7ckwlewr4slm.onion\")\n"
  3798. " (http-proxy \"http://localhost:9250\")))))))\n"
  3799. msgstr ""
  3800. "(operating-system\n"
  3801. " …\n"
  3802. " (services\n"
  3803. " (cons\n"
  3804. " (service tor-service-type\n"
  3805. " (tor-configuration\n"
  3806. " (config-file (plain-file \"tor-config\"\n"
  3807. " \"HTTPTunnelPort 127.0.0.1:9250\"))))\n"
  3808. " (modify-services %base-services\n"
  3809. " (guix-service-type\n"
  3810. " config => (guix-configuration\n"
  3811. " (inherit config)\n"
  3812. " ;; Onion-Dienst von ci.guix.gnu.org\n"
  3813. " (substitute-urls \"https://bp7o7ckwlewr4slm.onion\")\n"
  3814. " (http-proxy \"http://localhost:9250\")))))))\n"
  3815. #. type: Plain text
  3816. #: guix-git/doc/guix-cookbook.texi:2378
  3817. msgid "This will keep a tor process running that provides a HTTP CONNECT tunnel which will be used by @command{guix-daemon}. The daemon can use other protocols than HTTP(S) to get remote resources, request using those protocols won't go through Tor since we are only setting a HTTP tunnel here. Note that @code{substitutes-urls} is using HTTPS and not HTTP or it won't work, that's a limitation of Tor's tunnel; you may want to use @command{privoxy} instead to avoid such limitations."
  3818. msgstr "Dadurch wird ständig ein Tor-Prozess laufen, der einen HTTP-CONNECT-Tunnel für die Nutzung durch den @command{guix-daemon} bereitstellt. Der Daemon kann andere Protokolle als HTTP(S) benutzen, um entfernte Ressourcen abzurufen, und Anfragen über solche Protokolle werden Tor @emph{nicht} durchlaufen, weil wir hier nur einen HTTP-Tunnel festlegen. Beachten Sie, dass wir für @code{substitutes-urls} HTTPS statt HTTP benutzen, sonst würde es nicht funktionieren. Dabei handelt es sich um eine Einschränkung von Tors Tunnel; vielleicht möchten Sie stattdessen @command{privoxy} benutzen, um dieser Einschränkung nicht zu unterliegen."
  3819. #. type: Plain text
  3820. #: guix-git/doc/guix-cookbook.texi:2382
  3821. msgid "If you don't want to always get substitutes through Tor but using it just some of the times, then skip the @code{guix-configuration}. When you want to get a substitute from the Tor tunnel run:"
  3822. msgstr "Wenn Sie Substitute nicht immer, sondern nur manchmal über Tor beziehen wollen, dann überspringen Sie das mit der @code{guix-configuration}. Führen Sie einfach das hier aus, wenn Sie ein Substitut über den Tor-Tunnel laden möchten:"
  3823. #. type: example
  3824. #: guix-git/doc/guix-cookbook.texi:2386
  3825. #, no-wrap
  3826. msgid ""
  3827. "sudo herd set-http-proxy guix-daemon http://localhost:9250\n"
  3828. "guix build --substitute-urls=https://bp7o7ckwlewr4slm.onion …\n"
  3829. msgstr ""
  3830. "sudo herd set-http-proxy guix-daemon http://localhost:9250\n"
  3831. "guix build --substitute-urls=https://bp7o7ckwlewr4slm.onion …\n"
  3832. #. type: cindex
  3833. #: guix-git/doc/guix-cookbook.texi:2390
  3834. #, no-wrap
  3835. msgid "nginx, lua, openresty, resty"
  3836. msgstr "nginx, lua, openresty, resty"
  3837. #. type: Plain text
  3838. #: guix-git/doc/guix-cookbook.texi:2393
  3839. msgid "NGINX could be extended with Lua scripts."
  3840. msgstr "NGINX lässt sich mit Lua-Skripts erweitern."
  3841. #. type: Plain text
  3842. #: guix-git/doc/guix-cookbook.texi:2396
  3843. msgid "Guix provides NGINX service with ability to load Lua module and specific Lua packages, and reply to requests by evaluating Lua scripts."
  3844. msgstr "Guix stellt einen NGINX-Dienst bereit, mit dem das Lua-Modul und bestimmte Lua-Pakete geladen werden können, so dass Anfragen beantwortet werden, indem Lua-Skripte ausgewertet werden."
  3845. #. type: Plain text
  3846. #: guix-git/doc/guix-cookbook.texi:2400
  3847. msgid "The following example demonstrates system definition with configuration to evaluate @file{index.lua} Lua script on HTTP request to @uref{http://localhost/hello} endpoint:"
  3848. msgstr "Folgendes Beispiel zeigt eine Systemdefinition mit Einstellungen, um das Lua-Skript @file{index.lua} bei HTTP-Anfragen an den Endpunkt @uref{http://localhost/hello} auszuwerten:"
  3849. #. type: example
  3850. #: guix-git/doc/guix-cookbook.texi:2403
  3851. #, no-wrap
  3852. msgid ""
  3853. "local shell = require \"resty.shell\"\n"
  3854. "\n"
  3855. msgstr ""
  3856. "local shell = require \"resty.shell\"\n"
  3857. "\n"
  3858. #. type: example
  3859. #: guix-git/doc/guix-cookbook.texi:2407
  3860. #, no-wrap
  3861. msgid ""
  3862. "local stdin = \"\"\n"
  3863. "local timeout = 1000 -- ms\n"
  3864. "local max_size = 4096 -- byte\n"
  3865. "\n"
  3866. msgstr ""
  3867. "local stdin = \"\"\n"
  3868. "local timeout = 1000 -- ms\n"
  3869. "local max_size = 4096 -- byte\n"
  3870. "\n"
  3871. #. type: example
  3872. #: guix-git/doc/guix-cookbook.texi:2410
  3873. #, no-wrap
  3874. msgid ""
  3875. "local ok, stdout, stderr, reason, status =\n"
  3876. " shell.run([[/run/current-system/profile/bin/ls /tmp]], stdin, timeout, max_size)\n"
  3877. "\n"
  3878. msgstr ""
  3879. "local ok, stdout, stderr, reason, status =\n"
  3880. " shell.run([[/run/current-system/profile/bin/ls /tmp]], stdin, timeout, max_size)\n"
  3881. "\n"
  3882. #. type: example
  3883. #: guix-git/doc/guix-cookbook.texi:2412
  3884. #, no-wrap
  3885. msgid "ngx.say(stdout)\n"
  3886. msgstr "ngx.say(stdout)\n"
  3887. #. type: lisp
  3888. #: guix-git/doc/guix-cookbook.texi:2443
  3889. #, no-wrap
  3890. msgid ""
  3891. "(use-modules (gnu))\n"
  3892. "(use-service-modules #;… web)\n"
  3893. "(use-package-modules #;… lua)\n"
  3894. "(operating-system\n"
  3895. " ;; …\n"
  3896. " (services\n"
  3897. " ;; …\n"
  3898. " (service nginx-service-type\n"
  3899. " (nginx-configuration\n"
  3900. " (modules\n"
  3901. " (list\n"
  3902. " (file-append nginx-lua-module \"/etc/nginx/modules/ngx_http_lua_module.so\")))\n"
  3903. " (lua-package-path (list lua-resty-core\n"
  3904. " lua-resty-lrucache\n"
  3905. " lua-resty-signal\n"
  3906. " lua-tablepool\n"
  3907. " lua-resty-shell))\n"
  3908. " (lua-package-cpath (list lua-resty-signal))\n"
  3909. " (server-blocks\n"
  3910. " (list (nginx-server-configuration\n"
  3911. " (server-name '(\"localhost\"))\n"
  3912. " (listen '(\"80\"))\n"
  3913. " (root \"/etc\")\n"
  3914. " (locations (list\n"
  3915. " (nginx-location-configuration\n"
  3916. " (uri \"/hello\")\n"
  3917. " (body (list #~(format #f \"content_by_lua_file ~s;\"\n"
  3918. " #$(local-file \"index.lua\"))))))))))))))\n"
  3919. msgstr ""
  3920. "(use-modules (gnu))\n"
  3921. "(use-service-modules #;… web)\n"
  3922. "(use-package-modules #;… lua)\n"
  3923. "(operating-system\n"
  3924. " ;; …\n"
  3925. " (services\n"
  3926. " ;; …\n"
  3927. " (service nginx-service-type\n"
  3928. " (nginx-configuration\n"
  3929. " (modules\n"
  3930. " (list\n"
  3931. " (file-append nginx-lua-module \"/etc/nginx/modules/ngx_http_lua_module.so\")))\n"
  3932. " (lua-package-path (list lua-resty-core\n"
  3933. " lua-resty-lrucache\n"
  3934. " lua-resty-signal\n"
  3935. " lua-tablepool\n"
  3936. " lua-resty-shell))\n"
  3937. " (lua-package-cpath (list lua-resty-signal))\n"
  3938. " (server-blocks\n"
  3939. " (list (nginx-server-configuration\n"
  3940. " (server-name '(\"localhost\"))\n"
  3941. " (listen '(\"80\"))\n"
  3942. " (root \"/etc\")\n"
  3943. " (locations (list\n"
  3944. " (nginx-location-configuration\n"
  3945. " (uri \"/hello\")\n"
  3946. " (body (list #~(format #f \"content_by_lua_file ~s;\"\n"
  3947. " #$(local-file \"index.lua\"))))))))))))))\n"
  3948. #. type: Plain text
  3949. #: guix-git/doc/guix-cookbook.texi:2454
  3950. msgid "Guix is a functional package manager that offers many features beyond what more traditional package managers can do. To the uninitiated, those features might not have obvious use cases at first. The purpose of this chapter is to demonstrate some advanced package management concepts."
  3951. msgstr "Guix ist ein funktionales Paketverwaltungsprogramm, das weit mehr Funktionalitäten als traditionelle Paketverwalter anbietet. Für nicht Eingeweihte sind deren Anwendungsfälle nicht sofort ersichtlich. Dieses Kapitel ist dazu da, manche fortgeschrittenen Paketverwaltungskonzepte zu demonstrieren."
  3952. #. type: Plain text
  3953. #: guix-git/doc/guix-cookbook.texi:2457
  3954. msgid "@pxref{Package Management,,, guix, GNU Guix Reference Manual} for a complete reference."
  3955. msgstr "Siehe @ref{Paketverwaltung,,, guix.de, Referenzhandbuch zu GNU Guix} für eine vollständige Referenz."
  3956. #. type: section
  3957. #: guix-git/doc/guix-cookbook.texi:2460 guix-git/doc/guix-cookbook.texi:2462
  3958. #: guix-git/doc/guix-cookbook.texi:2463
  3959. #, no-wrap
  3960. msgid "Guix Profiles in Practice"
  3961. msgstr "Guix-Profile in der Praxis"
  3962. #. type: menuentry
  3963. #: guix-git/doc/guix-cookbook.texi:2460
  3964. msgid "Strategies for multiple profiles and manifests."
  3965. msgstr "Strategien für mehrere Profile und Manifeste."
  3966. #. type: Plain text
  3967. #: guix-git/doc/guix-cookbook.texi:2468
  3968. msgid "Guix provides a very useful feature that may be quite foreign to newcomers: @emph{profiles}. They are a way to group package installations together and all users on the same system are free to use as many profiles as they want."
  3969. msgstr "Guix gibt uns eine sehr nützliche Funktionalität, die Neuankömmlingen sehr fremd sein dürfte: @emph{Profile}. Mit ihnen kann man Paketinstallationen zusammenfassen und jeder Benutzer desselben Systems kann so viele davon anlegen, wie sie oder er möchte."
  3970. #. type: Plain text
  3971. #: guix-git/doc/guix-cookbook.texi:2473
  3972. msgid "Whether you're a developer or not, you may find that multiple profiles bring you great power and flexibility. While they shift the paradigm somewhat compared to @emph{traditional package managers}, they are very convenient to use once you've understood how to set them up."
  3973. msgstr "Ob Sie ein Entwickler sind oder nicht, Sie dürften feststellen, dass mehrere Profile ein mächtiges Werkzeug sind, das Sie flexibler macht. Zwar ist es ein gewisser Paradigmenwechsel verglichen mit @emph{traditioneller Paketverwaltung}, doch sind sie sehr praktisch, sobald man im Umgang mit ihnen den Dreh ’raushat."
  3974. #. type: Plain text
  3975. #: guix-git/doc/guix-cookbook.texi:2479
  3976. msgid "If you are familiar with Python's @samp{virtualenv}, you can think of a profile as a kind of universal @samp{virtualenv} that can hold any kind of software whatsoever, not just Python software. Furthermore, profiles are self-sufficient: they capture all the runtime dependencies which guarantees that all programs within a profile will always work at any point in time."
  3977. msgstr "Wenn Ihnen Pythons @samp{virtualenv} vertraut ist, können Sie sich ein Profil als eine Art universelles @samp{virtualenv} vorstellen, das jede Art von Software enthalten kann und nicht nur Python-Software. Desweiteren sind Profile selbstversorgend: Sie schließen alle Laufzeitabhängigkeiten ein und garantieren somit, dass alle Programme innerhalb eines Profils stets zu jeder Zeit funktionieren werden."
  3978. #. type: Plain text
  3979. #: guix-git/doc/guix-cookbook.texi:2481
  3980. msgid "Multiple profiles have many benefits:"
  3981. msgstr "Mehrere Profile bieten viele Vorteile:"
  3982. #. type: itemize
  3983. #: guix-git/doc/guix-cookbook.texi:2485
  3984. msgid "Clean semantic separation of the various packages a user needs for different contexts."
  3985. msgstr "Klare semantische Trennung der verschiedenen Pakete, die ein Nutzer für verschiedene Kontexte braucht."
  3986. #. type: itemize
  3987. #: guix-git/doc/guix-cookbook.texi:2489
  3988. msgid "Multiple profiles can be made available into the environment either on login or within a dedicated shell."
  3989. msgstr "Mehrere Profile können in der Umgebung verfügbar gemacht werden, entweder beim Anmelden oder in einer eigenen Shell."
  3990. #. type: itemize
  3991. #: guix-git/doc/guix-cookbook.texi:2493
  3992. msgid "Profiles can be loaded on demand. For instance, the user can use multiple shells, each of them running different profiles."
  3993. msgstr "Profile können bei Bedarf geladen werden. Zum Beispiel kann der Nutzer mehrere Unter-Shells benutzen, von denen jede ein anderes Profil ausführt."
  3994. #. type: itemize
  3995. #: guix-git/doc/guix-cookbook.texi:2498
  3996. msgid "Isolation: Programs from one profile will not use programs from the other, and the user can even install different versions of the same programs to the two profiles without conflict."
  3997. msgstr "Isolierung: Programme aus dem einen Profil werden keine Programme aus dem anderen benutzen, und der Nutzer kann sogar verschiedene Versionen desselben Programms in die zwei Profile installieren, ohne dass es zu Konflikten kommt."
  3998. #. type: itemize
  3999. #: guix-git/doc/guix-cookbook.texi:2502
  4000. msgid "Deduplication: Profiles share dependencies that happens to be the exact same. This makes multiple profiles storage-efficient."
  4001. msgstr "Deduplizierung: Profile teilen sich Abhängigkeiten, wenn sie genau gleich sind. Dadurch sind mehrere Profile speichereffizient."
  4002. #. type: itemize
  4003. #: guix-git/doc/guix-cookbook.texi:2510
  4004. msgid "Reproducible: when used with declarative manifests, a profile can be fully specified by the Guix commit that was active when it was set up. This means that the exact same profile can be @uref{https://guix.gnu.org/blog/2018/multi-dimensional-transactions-and-rollbacks-oh-my/, set up anywhere and anytime}, with just the commit information. See the section on @ref{Reproducible profiles}."
  4005. msgstr "Reproduzierbar: Wenn man dafür deklarative Manifeste benutzt, kann ein Profil allein durch den bei dessen Einrichtung aktiven Guix-Commit eindeutig spezifiziert werden. Das bedeutet, dass man genau dasselbe Profil @uref{https://guix.gnu.org/blog/2018/multi-dimensional-transactions-and-rollbacks-oh-my/, jederzeit und überall einrichten kann} und man dafür nur die Commit-Informationen braucht. Siehe den Abschnitt über @ref{Reproduzierbare Profile}."
  4006. #. type: itemize
  4007. #: guix-git/doc/guix-cookbook.texi:2514
  4008. msgid "Easier upgrades and maintenance: Multiple profiles make it easy to keep package listings at hand and make upgrades completely frictionless."
  4009. msgstr "Leichtere Aktualisierung und Wartung: Mit mehreren Profilen ist es ein Leichtes, eine Liste von Paketen zur Hand zu haben und Aktualisierungen völlig reibungslos ablaufen zu lassen."
  4010. #. type: Plain text
  4011. #: guix-git/doc/guix-cookbook.texi:2517
  4012. msgid "Concretely, here follows some typical profiles:"
  4013. msgstr "Konkret wären diese hier typische Profile:"
  4014. #. type: itemize
  4015. #: guix-git/doc/guix-cookbook.texi:2521
  4016. msgid "The dependencies of a project you are working on."
  4017. msgstr "Die Abhängigkeiten des Projekts, an dem Sie arbeiten."
  4018. #. type: itemize
  4019. #: guix-git/doc/guix-cookbook.texi:2524
  4020. msgid "Your favourite programming language libraries."
  4021. msgstr "Die Bibliotheken Ihrer Lieblingsprogrammiersprache."
  4022. #. type: itemize
  4023. #: guix-git/doc/guix-cookbook.texi:2527
  4024. msgid "Laptop-specific programs (like @samp{powertop}) that you don't need on a desktop."
  4025. msgstr "Programme nur für Laptops (wie @samp{powertop}), für die Sie auf einem „Desktop“-Rechner keine Verwendung haben."
  4026. #. type: itemize
  4027. #: guix-git/doc/guix-cookbook.texi:2531
  4028. msgid "@TeX{}live (this one can be really useful when you need to install just one package for this one document you've just received over email)."
  4029. msgstr "@TeX{}live (das kann wirklich praktisch sein, wenn Sie nur ein einziges Paket für dieses eine Dokument installieren müssen, das Ihnen jemand in einer E-Mail geschickt hat)."
  4030. #. type: itemize
  4031. #: guix-git/doc/guix-cookbook.texi:2534
  4032. msgid "Games."
  4033. msgstr "Spiele."
  4034. #. type: Plain text
  4035. #: guix-git/doc/guix-cookbook.texi:2537
  4036. msgid "Let's dive in the set up!"
  4037. msgstr "Tauchen wir ein in deren Einrichtung!"
  4038. #. type: subsection
  4039. #: guix-git/doc/guix-cookbook.texi:2538 guix-git/doc/guix-cookbook.texi:2539
  4040. #, no-wrap
  4041. msgid "Basic setup with manifests"
  4042. msgstr "Grundlegende Einrichtung über Manifeste"
  4043. #. type: Plain text
  4044. #: guix-git/doc/guix-cookbook.texi:2543
  4045. msgid "A Guix profile can be set up @emph{via} a so-called @emph{manifest specification} that looks like this:"
  4046. msgstr "Ein Guix-Profil kann über eine sogenannte @emph{Manifest-Spezifikation} eingerichtet werden. Das sieht etwa so aus:"
  4047. #. type: lisp
  4048. #: guix-git/doc/guix-cookbook.texi:2553
  4049. #, no-wrap
  4050. msgid ""
  4051. "(specifications->manifest\n"
  4052. " '(\"package-1\"\n"
  4053. " ;; Version 1.3 of package-2.\n"
  4054. " \"package-2@@1.3\"\n"
  4055. " ;; The \"lib\" output of package-3.\n"
  4056. " \"package-3:lib\"\n"
  4057. " ; ...\n"
  4058. " \"package-N\"))\n"
  4059. msgstr ""
  4060. "(specifications->manifest\n"
  4061. " '(\"paket-1\"\n"
  4062. " ;; Version 1.3 von paket-2.\n"
  4063. " \"paket-2@@1.3\"\n"
  4064. " ;; Die \"lib\"-Ausgabe von paket-3.\n"
  4065. " \"paket-3:lib\"\n"
  4066. " ; …\n"
  4067. " \"paket-N\"))\n"
  4068. #. type: Plain text
  4069. #: guix-git/doc/guix-cookbook.texi:2557
  4070. msgid "@pxref{Invoking guix package,,, guix, GNU Guix Reference Manual}, for the syntax details."
  4071. msgstr "Siehe @ref{Aufruf von guix package,,, guix.de, Referenzhandbuch zu GNU Guix}, für Details zur Syntax."
  4072. #. type: Plain text
  4073. #: guix-git/doc/guix-cookbook.texi:2559
  4074. msgid "We can create a manifest specification per profile and install them this way:"
  4075. msgstr "Wir können eine Manifestspezifikation für jedes Profil schreiben und es auf diese Weise installieren:"
  4076. #. type: example
  4077. #: guix-git/doc/guix-cookbook.texi:2564
  4078. #, no-wrap
  4079. msgid ""
  4080. "GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles\n"
  4081. "mkdir -p \"$GUIX_EXTRA_PROFILES\"/my-project # if it does not exist yet\n"
  4082. "guix package --manifest=/path/to/guix-my-project-manifest.scm --profile=\"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n"
  4083. msgstr ""
  4084. "GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles\n"
  4085. "mkdir -p \"$GUIX_EXTRA_PROFILES\"/my-project # wenn es noch nicht existiert\n"
  4086. "guix package --manifest=/pfad/zu/guix-my-project-manifest.scm --profile=\"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n"
  4087. #. type: Plain text
  4088. #: guix-git/doc/guix-cookbook.texi:2568
  4089. msgid "Here we set an arbitrary variable @samp{GUIX_EXTRA_PROFILES} to point to the directory where we will store our profiles in the rest of this article."
  4090. msgstr "Hierbei haben wir eine beliebig benannte Variable @samp{GUIX_EXTRA_PROFILES} eingerichtet, die auf das Verzeichnis verweist, wo wir unsere Profile für den Rest dieses Artikels speichern wollen."
  4091. #. type: Plain text
  4092. #: guix-git/doc/guix-cookbook.texi:2574
  4093. msgid "Placing all your profiles in a single directory, with each profile getting its own sub-directory, is somewhat cleaner. This way, each sub-directory will contain all the symlinks for precisely one profile. Besides, ``looping over profiles'' becomes obvious from any programming language (e.g.@: a shell script) by simply looping over the sub-directories of @samp{$GUIX_EXTRA_PROFILES}."
  4094. msgstr "Wenn Sie all Ihre Profile in ein einzelnes Verzeichnis legen und jedes Profil ein Unterverzeichnis darin bekommt, ist die Organisation etwas verständlicher. Dadurch wird jedes Unterverzeichnis all die symbolischen Verknüpfungen für genau ein Profil enthalten. Außerdem wird es von jeder Programmiersprache aus einfach, eine „Schleife über die Profile“ zu schreiben (z.B.@: in einem Shell-Skript), indem Sie es einfach die Unterverzeichnisse von @samp{$GUIX_EXTRA_PROFILES} in einer Schleife durchlaufen lassen."
  4095. #. type: Plain text
  4096. #: guix-git/doc/guix-cookbook.texi:2576
  4097. msgid "Note that it's also possible to loop over the output of"
  4098. msgstr "Beachten Sie, dass man auch eine Schleife über die Ausgabe von"
  4099. #. type: example
  4100. #: guix-git/doc/guix-cookbook.texi:2579
  4101. #, no-wrap
  4102. msgid "guix package --list-profiles\n"
  4103. msgstr "guix package --list-profiles\n"
  4104. #. type: Plain text
  4105. #: guix-git/doc/guix-cookbook.texi:2582
  4106. msgid "although you'll probably have to filter out @file{~/.config/guix/current}."
  4107. msgstr "schreiben kann, obwohl Sie dabei wahrscheinlich @file{~/.config/guix/current} herausfiltern wollen würden."
  4108. #. type: Plain text
  4109. #: guix-git/doc/guix-cookbook.texi:2584
  4110. msgid "To enable all profiles on login, add this to your @file{~/.bash_profile} (or similar):"
  4111. msgstr "Um bei der Anmeldung alle Profile zu aktivieren, fügen Sie dies in Ihre @file{~/.bash_profile} ein (oder etwas Entsprechendes):"
  4112. #. type: example
  4113. #: guix-git/doc/guix-cookbook.texi:2594
  4114. #, no-wrap
  4115. msgid ""
  4116. "for i in $GUIX_EXTRA_PROFILES/*; do\n"
  4117. " profile=$i/$(basename \"$i\")\n"
  4118. " if [ -f \"$profile\"/etc/profile ]; then\n"
  4119. " GUIX_PROFILE=\"$profile\"\n"
  4120. " . \"$GUIX_PROFILE\"/etc/profile\n"
  4121. " fi\n"
  4122. " unset profile\n"
  4123. "done\n"
  4124. msgstr ""
  4125. "for i in $GUIX_EXTRA_PROFILES/*; do\n"
  4126. " profile=$i/$(basename \"$i\")\n"
  4127. " if [ -f \"$profile\"/etc/profile ]; then\n"
  4128. " GUIX_PROFILE=\"$profile\"\n"
  4129. " . \"$GUIX_PROFILE\"/etc/profile\n"
  4130. " fi\n"
  4131. " unset profile\n"
  4132. "done\n"
  4133. #. type: Plain text
  4134. #: guix-git/doc/guix-cookbook.texi:2599
  4135. msgid "Note to Guix System users: the above reflects how your default profile @file{~/.guix-profile} is activated from @file{/etc/profile}, that latter being loaded by @file{~/.bashrc} by default."
  4136. msgstr "Eine Anmerkung für Nutzer von „Guix System“: Obiger Code entspricht dem, wie Ihr voreingestelltes Profil @file{~/.guix-profile} durch @file{/etc/profile} aktiviert wird, was nach Vorgabe durch @file{~/.bashrc} geladen wird."
  4137. #. type: Plain text
  4138. #: guix-git/doc/guix-cookbook.texi:2601
  4139. msgid "You can obviously choose to only enable a subset of them:"
  4140. msgstr "Selbstverständlich können Sie sich auch dafür entscheiden, nur eine Teilmenge zu aktivieren:"
  4141. #. type: example
  4142. #: guix-git/doc/guix-cookbook.texi:2611
  4143. #, no-wrap
  4144. msgid ""
  4145. "for i in \"$GUIX_EXTRA_PROFILES\"/my-project-1 \"$GUIX_EXTRA_PROFILES\"/my-project-2; do\n"
  4146. " profile=$i/$(basename \"$i\")\n"
  4147. " if [ -f \"$profile\"/etc/profile ]; then\n"
  4148. " GUIX_PROFILE=\"$profile\"\n"
  4149. " . \"$GUIX_PROFILE\"/etc/profile\n"
  4150. " fi\n"
  4151. " unset profile\n"
  4152. "done\n"
  4153. msgstr ""
  4154. "for i in \"$GUIX_EXTRA_PROFILES\"/my-project-1 \"$GUIX_EXTRA_PROFILES\"/my-project-2; do\n"
  4155. " profile=$i/$(basename \"$i\")\n"
  4156. " if [ -f \"$profile\"/etc/profile ]; then\n"
  4157. " GUIX_PROFILE=\"$profile\"\n"
  4158. " . \"$GUIX_PROFILE\"/etc/profile\n"
  4159. " fi\n"
  4160. " unset profile\n"
  4161. "done\n"
  4162. #. type: Plain text
  4163. #: guix-git/doc/guix-cookbook.texi:2615
  4164. msgid "When a profile is off, it's straightforward to enable it for an individual shell without \"polluting\" the rest of the user session:"
  4165. msgstr "Wenn ein Profil abgeschaltet ist, lässt es sich mit Leichtigkeit für eine bestimmte Shell aktivieren, ohne die restliche Benutzersitzung zu „verschmutzen“:"
  4166. #. type: example
  4167. #: guix-git/doc/guix-cookbook.texi:2618
  4168. #, no-wrap
  4169. msgid "GUIX_PROFILE=\"path/to/my-project\" ; . \"$GUIX_PROFILE\"/etc/profile\n"
  4170. msgstr "GUIX_PROFILE=\"pfad/zu/my-project\" ; . \"$GUIX_PROFILE\"/etc/profile\n"
  4171. #. type: Plain text
  4172. #: guix-git/doc/guix-cookbook.texi:2625
  4173. msgid "The key to enabling a profile is to @emph{source} its @samp{etc/profile} file. This file contains shell code that exports the right environment variables necessary to activate the software contained in the profile. It is built automatically by Guix and meant to be sourced. It contains the same variables you would get if you ran:"
  4174. msgstr "Der Schlüssel dazu, wie man ein Profil aktiviert, ist dessen @samp{etc/profile}-Datei mit @command{source} zu laden. Diese Datei enthält einige Shell-Befehle, um die für das Aktivieren der Software im Profil nötigen Umgebungsvariablen zu exportieren. Die Datei wird durch Guix automatisch erzeugt, um mit @command{source} eingelesen zu werden. Sie enthält dieselben Variablen, die Sie nach Ausführung dieses Befehls bekämen:"
  4175. #. type: example
  4176. #: guix-git/doc/guix-cookbook.texi:2628
  4177. #, no-wrap
  4178. msgid "guix package --search-paths=prefix --profile=$my_profile\"\n"
  4179. msgstr "guix package --search-paths=prefix --profile=$my_profile\"\n"
  4180. #. type: Plain text
  4181. #: guix-git/doc/guix-cookbook.texi:2632
  4182. msgid "Once again, see (@pxref{Invoking guix package,,, guix, GNU Guix Reference Manual}) for the command line options."
  4183. msgstr "Siehe auch hier das @ref{Aufruf von guix package,,, guix.de, Referenzhandbuch zu GNU Guix} für die Befehlszeilenoptionen."
  4184. #. type: Plain text
  4185. #: guix-git/doc/guix-cookbook.texi:2634
  4186. msgid "To upgrade a profile, simply install the manifest again:"
  4187. msgstr "Um ein Profil zu aktualisieren, installieren Sie das Manifest einfach nochmal:"
  4188. #. type: example
  4189. #: guix-git/doc/guix-cookbook.texi:2637
  4190. #, no-wrap
  4191. msgid "guix package -m /path/to/guix-my-project-manifest.scm -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n"
  4192. msgstr "guix package -m /pfad/zu/guix-my-project-manifest.scm -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n"
  4193. #. type: Plain text
  4194. #: guix-git/doc/guix-cookbook.texi:2643
  4195. msgid "To upgrade all profiles, it's easy enough to loop over them. For instance, assuming your manifest specifications are stored in @file{~/.guix-manifests/guix-$profile-manifest.scm}, with @samp{$profile} being the name of the profile (e.g.@: \"project1\"), you could do the following in Bourne shell:"
  4196. msgstr "Um alle Profile zu aktualisieren, genügt es, sie in einer Schleife durchlaufen zu lassen. Nehmen wir zum Beispiel an, Ihre Manifestspezifikationen befinden sich in @file{~/.guix-manifests/guix-$profile-manifest.scm}, wobei @samp{$profile} der Name des Profils ist (z.B.@: „projekt1“), dann könnten Sie in der Bourne-Shell Folgendes tun:"
  4197. #. type: example
  4198. #: guix-git/doc/guix-cookbook.texi:2648
  4199. #, no-wrap
  4200. msgid ""
  4201. "for profile in \"$GUIX_EXTRA_PROFILES\"/*; do\n"
  4202. " guix package --profile=\"$profile\" --manifest=\"$HOME/.guix-manifests/guix-$profile-manifest.scm\"\n"
  4203. "done\n"
  4204. msgstr ""
  4205. "for profile in \"$GUIX_EXTRA_PROFILES\"/*; do\n"
  4206. " guix package --profile=\"$profile\" --manifest=\"$HOME/.guix-manifests/guix-$profile-manifest.scm\"\n"
  4207. "done\n"
  4208. #. type: Plain text
  4209. #: guix-git/doc/guix-cookbook.texi:2651
  4210. msgid "Each profile has its own generations:"
  4211. msgstr "Jedes Profil verfügt über seine eigenen Generationen:"
  4212. #. type: example
  4213. #: guix-git/doc/guix-cookbook.texi:2654
  4214. #, no-wrap
  4215. msgid "guix package -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project --list-generations\n"
  4216. msgstr "guix package -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project --list-generations\n"
  4217. #. type: Plain text
  4218. #: guix-git/doc/guix-cookbook.texi:2657
  4219. msgid "You can roll-back to any generation of a given profile:"
  4220. msgstr "Sie können es auf jede Generation zurücksetzen:"
  4221. #. type: example
  4222. #: guix-git/doc/guix-cookbook.texi:2660
  4223. #, no-wrap
  4224. msgid "guix package -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project --switch-generations=17\n"
  4225. msgstr "guix package -p \"$GUIX_EXTRA_PROFILES\"/my-project/my-project --switch-generations=17\n"
  4226. #. type: Plain text
  4227. #: guix-git/doc/guix-cookbook.texi:2664
  4228. msgid "Finally, if you want to switch to a profile without inheriting from the current environment, you can activate it from an empty shell:"
  4229. msgstr "Zu guter Letzt ist es möglich, zu einem Profil zu wechseln ohne die aktuelle Umgebung zu erben, indem Sie es aus einer leeren Shell heraus aktivieren:"
  4230. #. type: example
  4231. #: guix-git/doc/guix-cookbook.texi:2668
  4232. #, no-wrap
  4233. msgid ""
  4234. "env -i $(which bash) --login --noprofile --norc\n"
  4235. ". my-project/etc/profile\n"
  4236. msgstr ""
  4237. "env -i $(which bash) --login --noprofile --norc\n"
  4238. ". my-project/etc/profile\n"
  4239. #. type: subsection
  4240. #: guix-git/doc/guix-cookbook.texi:2670 guix-git/doc/guix-cookbook.texi:2671
  4241. #, no-wrap
  4242. msgid "Required packages"
  4243. msgstr "Die nötigen Pakete"
  4244. #. type: Plain text
  4245. #: guix-git/doc/guix-cookbook.texi:2676
  4246. msgid "Activating a profile essentially boils down to exporting a bunch of environmental variables. This is the role of the @samp{etc/profile} within the profile."
  4247. msgstr "Das Aktivieren eines Profils bedeutet im Grunde, dass eine Menge Umgebungsvariabler exportiert wird. Diese Rolle fällt der @samp{etc/profile}-Datei innerhalb des Profils zu."
  4248. #. type: emph{#1}
  4249. #: guix-git/doc/guix-cookbook.texi:2679
  4250. msgid "Note: Only the environmental variables of the packages that consume them will be set."
  4251. msgstr "Anmerkung: Nur diejenigen Umgebungsvariablen der sie gebrauchenden Pakete werden gesetzt."
  4252. #. type: Plain text
  4253. #: guix-git/doc/guix-cookbook.texi:2683
  4254. msgid "For instance, @samp{MANPATH} won't be set if there is no consumer application for man pages within the profile. So if you need to transparently access man pages once the profile is loaded, you've got two options:"
  4255. msgstr "Zum Beispiel wird kein @samp{MANPATH} gesetzt sein, wenn keine Anwendung im Profil diese „Man-Pages“ (Handbuchseiten) gebraucht. Wenn Sie also transparenten Zugriff auf Handbuchseiten brauchen, nachdem das Profil geladen wurde, dann gibt es zwei Möglichkeiten:"
  4256. #. type: itemize
  4257. #: guix-git/doc/guix-cookbook.texi:2687
  4258. msgid "Either export the variable manually, e.g."
  4259. msgstr "Entweder Sie exportieren die Variablen von Hand, z.B."
  4260. #. type: example
  4261. #: guix-git/doc/guix-cookbook.texi:2689
  4262. #, no-wrap
  4263. msgid "export MANPATH=/path/to/profile$@{MANPATH:+:@}$MANPATH\n"
  4264. msgstr "export MANPATH=/path/to/profile$@{MANPATH:+:@}$MANPATH\n"
  4265. #. type: itemize
  4266. #: guix-git/doc/guix-cookbook.texi:2693
  4267. msgid "Or include @samp{man-db} to the profile manifest."
  4268. msgstr "Oder Sie schreiben @samp{man-db} in das Profilmanifest hinein."
  4269. #. type: Plain text
  4270. #: guix-git/doc/guix-cookbook.texi:2697
  4271. msgid "The same is true for @samp{INFOPATH} (you can install @samp{info-reader}), @samp{PKG_CONFIG_PATH} (install @samp{pkg-config}), etc."
  4272. msgstr "Das Gleiche gilt für @samp{INFOPATH} (Sie können @samp{info-reader} installieren), @samp{PKG_CONFIG_PATH} (installieren Sie @samp{pkg-config}), etc."
  4273. #. type: subsection
  4274. #: guix-git/doc/guix-cookbook.texi:2698 guix-git/doc/guix-cookbook.texi:2699
  4275. #, no-wrap
  4276. msgid "Default profile"
  4277. msgstr "Vorgabeprofil"
  4278. #. type: Plain text
  4279. #: guix-git/doc/guix-cookbook.texi:2702
  4280. msgid "What about the default profile that Guix keeps in @file{~/.guix-profile}?"
  4281. msgstr "Was ist mit dem Standardprofil, das Guix in @file{~/.guix-profile} aufbewahrt?"
  4282. #. type: Plain text
  4283. #: guix-git/doc/guix-cookbook.texi:2705
  4284. msgid "You can assign it the role you want. Typically you would install the manifest of the packages you want to use all the time."
  4285. msgstr "Sie können ihm die Rolle zuweisen, die Sie wollen. Normalerweise würden Sie das Manifest derjenigen Pakete installieren, die Sie ständig benutzen möchten."
  4286. #. type: Plain text
  4287. #: guix-git/doc/guix-cookbook.texi:2709
  4288. msgid "Alternatively, you could keep it ``manifest-less'' for throw-away packages that you would just use for a couple of days. This way makes it convenient to run"
  4289. msgstr "Alternativ können Sie es ohne Manifest für Wegwerfpakete benutzen, die Sie nur ein paar Tage lang benutzen wollen. Das macht es leicht,"
  4290. #. type: example
  4291. #: guix-git/doc/guix-cookbook.texi:2713
  4292. #, no-wrap
  4293. msgid ""
  4294. "guix install package-foo\n"
  4295. "guix upgrade package-bar\n"
  4296. msgstr ""
  4297. "guix install paket-foo\n"
  4298. "guix upgrade paket-bar\n"
  4299. #. type: Plain text
  4300. #: guix-git/doc/guix-cookbook.texi:2716
  4301. msgid "without having to specify the path to a profile."
  4302. msgstr "auszuführen ohne den Pfad zu einem Profil festzulegen."
  4303. #. type: subsection
  4304. #: guix-git/doc/guix-cookbook.texi:2717 guix-git/doc/guix-cookbook.texi:2718
  4305. #, no-wrap
  4306. msgid "The benefits of manifests"
  4307. msgstr "Der Vorteil von Manifesten"
  4308. #. type: Plain text
  4309. #: guix-git/doc/guix-cookbook.texi:2722
  4310. msgid "Manifests are a convenient way to keep your package lists around and, say, to synchronize them across multiple machines using a version control system."
  4311. msgstr "Manifeste sind eine bequeme Art, Ihre Paketlisten zur Hand zu haben und diese z.B.@: über mehrere Maschinen hinweg in einem Versionskontrollsystem zu synchronisieren."
  4312. #. type: Plain text
  4313. #: guix-git/doc/guix-cookbook.texi:2726
  4314. msgid "A common complaint about manifests is that they can be slow to install when they contain large number of packages. This is especially cumbersome when you just want get an upgrade for one package within a big manifest."
  4315. msgstr "Eine oft gehörte Beschwerde über Manifeste ist, dass es lange dauert, sie zu installieren, wenn sie viele Pakete enthalten. Das ist besonders hinderlich, wenn Sie nur ein einziges Paket in ein großes Manifest installieren möchten."
  4316. #. type: Plain text
  4317. #: guix-git/doc/guix-cookbook.texi:2731
  4318. msgid "This is one more reason to use multiple profiles, which happen to be just perfect to break down manifests into multiple sets of semantically connected packages. Using multiple, small profiles provides more flexibility and usability."
  4319. msgstr "Das ist ein weiteres Argument dafür, mehrere Profile zu benutzen, denn es stellt sich heraus, dass dieses Vorgehen perfekt für das Aufbrechen von Manifesten in mehrere Mengen semantisch verbundener Pakete geeignet ist. Mit mehreren, kleinen Profilen haben Sie mehr Flexibilität und Benutzerfreundlichkeit."
  4320. #. type: Plain text
  4321. #: guix-git/doc/guix-cookbook.texi:2733
  4322. msgid "Manifests come with multiple benefits. In particular, they ease maintenance:"
  4323. msgstr "Manifeste haben mehrere Vorteile. Insbesondere erleichtern sie die Wartung."
  4324. #. type: itemize
  4325. #: guix-git/doc/guix-cookbook.texi:2741
  4326. msgid "When a profile is set up from a manifest, the manifest itself is self-sufficient to keep a ``package listing'' around and reinstall the profile later or on a different system. For ad-hoc profiles, we would need to generate a manifest specification manually and maintain the package versions for the packages that don't use the default version."
  4327. msgstr "Wenn ein Profil aus einem Manifest heraus eingerichtet wird, ist das Manifest selbst genug, um eine Liste der Pakete zur Verfügung zu haben und das Profil später auf einem anderen System zu installieren. Bei @i{ad-hoc}-Profilen müssten wir hingegen eine Manifestspezifikation von Hand schreiben und uns um die Paketversionen derjenigen Pakete kümmern, die nicht die vorgegebene Version verwenden."
  4328. #. type: itemize
  4329. #: guix-git/doc/guix-cookbook.texi:2746
  4330. msgid "@code{guix package --upgrade} always tries to update the packages that have propagated inputs, even if there is nothing to do. Guix manifests remove this problem."
  4331. msgstr "Bei @code{guix package --upgrade} wird immer versucht, die Pakete zu aktualisieren, die propagierte Eingaben haben, selbst wenn es nichts zu tun gibt. Mit Guix-Manifesten fällt dieses Problem weg."
  4332. #. type: itemize
  4333. #: guix-git/doc/guix-cookbook.texi:2752
  4334. msgid "When partially upgrading a profile, conflicts may arise (due to diverging dependencies between the updated and the non-updated packages) and they can be annoying to resolve manually. Manifests remove this problem altogether since all packages are always upgraded at once."
  4335. msgstr "Wenn man nur Teile eines Profils aktualisiert, kann es zu Konflikten kommen (weil die Abhängigkeiten zwischen aktualisierten und nicht aktualisierten Paketen voneinander abweichen), und es kann mühsam sein, diese Konflikte von Hand aufzulösen. Manifeste haben kein solches Problem, weil alle Pakete immer gleichzeitig aktualisiert werden."
  4336. #. type: itemize
  4337. #: guix-git/doc/guix-cookbook.texi:2758
  4338. msgid "As mentioned above, manifests allow for reproducible profiles, while the imperative @code{guix install}, @code{guix upgrade}, etc. do not, since they produce different profiles every time even when they hold the same packages. See @uref{https://issues.guix.gnu.org/issue/33285, the related discussion on the matter}."
  4339. msgstr "Wie zuvor erwähnt, gewähren einem Manifeste reproduzierbare Profile, während die imperativen @code{guix install}, @code{guix upgrade}, etc.@: das nicht tun, weil sie jedes Mal ein anderes Profil ergeben, obwohl sie dieselben Pakete enthalten. Siehe die @uref{https://issues.guix.gnu.org/issue/33285, dieses Thema betreffende Diskussion}."
  4340. #. type: itemize
  4341. #: guix-git/doc/guix-cookbook.texi:2766
  4342. msgid "Manifest specifications are usable by other @samp{guix} commands. For example, you can run @code{guix weather -m manifest.scm} to see how many substitutes are available, which can help you decide whether you want to try upgrading today or wait a while. Another example: you can run @code{guix pack -m manifest.scm} to create a pack containing all the packages in the manifest (and their transitive references)."
  4343. msgstr "Manifestspezifikationen können von anderen @samp{guix}-Befehlen benutzt werden. Zum Beispiel können Sie @code{guix weather -m manifest.scm} ausführen, um zu sehen, wie viele Substitute verfügbar sind, was Ihnen bei der Entscheidung helfen kann, ob Sie heute schon eine Aktualisierung durchführen oder lieber noch eine Weile warten möchten. Ein anderes Beispiel: Sie können mit @code{guix pack -m manifest.scm} ein Bündel erzeugen, das alle Pakete im Manifest enthält (mitsamt derer transitiven Referenzen)."
  4344. #. type: itemize
  4345. #: guix-git/doc/guix-cookbook.texi:2770
  4346. msgid "Finally, manifests have a Scheme representation, the @samp{<manifest>} record type. They can be manipulated in Scheme and passed to the various Guix @uref{https://en.wikipedia.org/wiki/Api, APIs}."
  4347. msgstr "Zuletzt haben Manifeste auch eine Repräsentation in Scheme, nämlich den @samp{<manifest>}-Verbundstyp. Sie können in Scheme verarbeitet werden und an die verschiedenen @uref{https://de.wikipedia.org/wiki/Programmierschnittstelle, Guix-Programmierschnittstellen (APIs)} übergeben werden."
  4348. #. type: Plain text
  4349. #: guix-git/doc/guix-cookbook.texi:2778
  4350. msgid "It's important to understand that while manifests can be used to declare profiles, they are not strictly equivalent: profiles have the side effect that they ``pin'' packages in the store, which prevents them from being garbage-collected (@pxref{Invoking guix gc,,, guix, GNU Guix Reference Manual}) and ensures that they will still be available at any point in the future."
  4351. msgstr "Es ist wichtig, dass Sie verstehen, dass Manifeste zwar benutzt werden können, um Profile zu deklarieren, sie aber nicht ganz dasselbe wie Profile sind: Profile haben Nebenwirkungen. Sie setzen Pakete im Store fest, so dass sie nicht vom Müllsammler geholt werden (siehe @ref{Aufruf von guix gc,,, guix.de, Referenzhandbuch zu GNU Guix}) und stellen sicher, dass sie auch in Zukunft jederzeit verfügbar sein werden."
  4352. #. type: Plain text
  4353. #: guix-git/doc/guix-cookbook.texi:2780
  4354. msgid "Let's take an example:"
  4355. msgstr "Schauen wir uns ein Beispiel an:"
  4356. #. type: enumerate
  4357. #: guix-git/doc/guix-cookbook.texi:2786
  4358. msgid "We have an environment for hacking on a project for which there isn't a Guix package yet. We build the environment using a manifest, and then run @code{guix environment -m manifest.scm}. So far so good."
  4359. msgstr "Wir haben eine Umgebung, in der wir an einem Projekt hacken können, für das es noch kein Guix-Paket gibt. Wir richten die Umgebung mit einem Manifest ein und führen dann @code{guix environment -m manifest.scm} aus. So weit so gut."
  4360. #. type: enumerate
  4361. #: guix-git/doc/guix-cookbook.texi:2792
  4362. msgid "Many weeks pass and we have run a couple of @code{guix pull} in the mean time. Maybe a dependency from our manifest has been updated; or we may have run @code{guix gc} and some packages needed by our manifest have been garbage-collected."
  4363. msgstr "Nach vielen Wochen haben wir in der Zwischenzeit schon ein paarmal @code{guix pull} laufen lassen. Vielleicht wurde eine Abhängigkeit aus unserem Manifest aktualisiert oder wir könnten @code{guix gc} ausgeführt haben, so dass manche Pakete, die von unserem Manifest gebraucht würden, vom Müllsammler geholt worden sind."
  4364. #. type: enumerate
  4365. #: guix-git/doc/guix-cookbook.texi:2797
  4366. msgid "Eventually, we set to work on that project again, so we run @code{guix environment -m manifest.scm}. But now we have to wait for Guix to build and install stuff!"
  4367. msgstr "Schließlich fangen wir wieder an, an dem Projekt zu arbeiten, also fÜhren wir @code{guix environment -m manifest.scm} aus. Aber jetzt müssen wir warten, bis Guix lauter Dinge erstellt und installiert hat!"
  4368. #. type: Plain text
  4369. #: guix-git/doc/guix-cookbook.texi:2803
  4370. msgid "Ideally, we could spare the rebuild time. And indeed we can, all we need is to install the manifest to a profile and use @code{GUIX_PROFILE=/the/profile; . \"$GUIX_PROFILE\"/etc/profile} as explained above: this guarantees that our hacking environment will be available at all times."
  4371. msgstr "Ideal wäre es, wenn wir uns die Zeit für die Neuerstellung sparen könnten. Und das können wir auch: Alles, was wir brauchen, ist, das Manifest in ein Profil zu installieren und @code{GUIX_PROFILE=/das/profil; . \"$GUIX_PROFILE\"/etc/profile} aufzurufen, wie oben erklärt. Dadurch haben wir die Garantie, dass unsere Hacking-Umgebung jederzeit zur Verfügung steht."
  4372. #. type: Plain text
  4373. #: guix-git/doc/guix-cookbook.texi:2806
  4374. msgid "@emph{Security warning:} While keeping old profiles around can be convenient, keep in mind that outdated packages may not have received the latest security fixes."
  4375. msgstr "@emph{Sicherheitswarnung:} Obwohl es angenehm sein kann, alte Profile zu behalten, sollten Sie daran denken, dass veraltete Pakete @emph{nicht} über die neuesten Sicherheitsbehebungen verfügen."
  4376. #. type: subsection
  4377. #: guix-git/doc/guix-cookbook.texi:2807 guix-git/doc/guix-cookbook.texi:2808
  4378. #, no-wrap
  4379. msgid "Reproducible profiles"
  4380. msgstr "Reproduzierbare Profile"
  4381. #. type: Plain text
  4382. #: guix-git/doc/guix-cookbook.texi:2811
  4383. msgid "To reproduce a profile bit-for-bit, we need two pieces of information:"
  4384. msgstr "Um ein Profil Bit für Bit nachzubilden, brauchen wir zweierlei Informationen:"
  4385. #. type: itemize
  4386. #: guix-git/doc/guix-cookbook.texi:2815
  4387. msgid "a manifest,"
  4388. msgstr "ein Manifest und"
  4389. #. type: itemize
  4390. #: guix-git/doc/guix-cookbook.texi:2817
  4391. msgid "a Guix channel specification."
  4392. msgstr "eine Kanalspezifikation für Guix."
  4393. #. type: Plain text
  4394. #: guix-git/doc/guix-cookbook.texi:2821
  4395. msgid "Indeed, manifests alone might not be enough: different Guix versions (or different channels) can produce different outputs for a given manifest."
  4396. msgstr "Tatsächlich kann es vorkommen, dass ein Manifest allein nicht genug ist: Verschiedene Versionen von Guix (oder andere Kanäle) können beim selben Manifest zu verschiedenen Ausgaben führen."
  4397. #. type: Plain text
  4398. #: guix-git/doc/guix-cookbook.texi:2825
  4399. msgid "You can output the Guix channel specification with @samp{guix describe --format=channels}. Save this to a file, say @samp{channel-specs.scm}."
  4400. msgstr "Sie können sich die Guix-Kanalspezifikationen mit @samp{guix describe --format=channels} ausgeben lassen. Speichern Sie sie in eine Datei ab, sagen wir @samp{channel-specs.scm}."
  4401. #. type: Plain text
  4402. #: guix-git/doc/guix-cookbook.texi:2828
  4403. msgid "On another computer, you can use the channel specification file and the manifest to reproduce the exact same profile:"
  4404. msgstr "Auf einem anderen Rechner können Sie die Kanalspezifikationsdatei und das Manifest benutzen, um genau dasselbe Profil zu reproduzieren:"
  4405. #. type: example
  4406. #: guix-git/doc/guix-cookbook.texi:2832
  4407. #, no-wrap
  4408. msgid ""
  4409. "GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles\n"
  4410. "GUIX_EXTRA=$HOME/.guix-extra\n"
  4411. "\n"
  4412. msgstr ""
  4413. "GUIX_EXTRA_PROFILES=$HOME/.guix-extra-profiles\n"
  4414. "GUIX_EXTRA=$HOME/.guix-extra\n"
  4415. "\n"
  4416. #. type: example
  4417. #: guix-git/doc/guix-cookbook.texi:2835
  4418. #, no-wrap
  4419. msgid ""
  4420. "mkdir \"$GUIX_EXTRA\"/my-project\n"
  4421. "guix pull --channels=channel-specs.scm --profile \"$GUIX_EXTRA/my-project/guix\"\n"
  4422. "\n"
  4423. msgstr ""
  4424. "mkdir \"$GUIX_EXTRA\"/my-project\n"
  4425. "guix pull --channels=channel-specs.scm --profile \"$GUIX_EXTRA/my-project/guix\"\n"
  4426. "\n"
  4427. #. type: example
  4428. #: guix-git/doc/guix-cookbook.texi:2838
  4429. #, no-wrap
  4430. msgid ""
  4431. "mkdir -p \"$GUIX_EXTRA_PROFILES/my-project\"\n"
  4432. "\"$GUIX_EXTRA\"/my-project/guix/bin/guix package --manifest=/path/to/guix-my-project-manifest.scm --profile=\"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n"
  4433. msgstr ""
  4434. "mkdir -p \"$GUIX_EXTRA_PROFILES/my-project\"\n"
  4435. "\"$GUIX_EXTRA\"/my-project/guix/bin/guix package --manifest=/path/to/guix-my-project-manifest.scm --profile=\"$GUIX_EXTRA_PROFILES\"/my-project/my-project\n"
  4436. #. type: Plain text
  4437. #: guix-git/doc/guix-cookbook.texi:2842
  4438. msgid "It's safe to delete the Guix channel profile you've just installed with the channel specification, the project profile does not depend on it."
  4439. msgstr "Es kann nichts Schlimmes passieren, wenn Sie das Guix-Kanalprofil, das Sie eben aus der Kanalspezifikation erstellt haben, löschen, denn das Projektprofil hängt davon nicht ab."
  4440. #. type: Plain text
  4441. #: guix-git/doc/guix-cookbook.texi:2849
  4442. msgid "Guix provides multiple tools to manage environment. This chapter demonstrate such utilities."
  4443. msgstr "Guix liefert mehrere Werkzeuge mit, um die Umgebung zu verwalten. Dieses Kapitel zeigt solche Werkzeuge."
  4444. #. type: section
  4445. #: guix-git/doc/guix-cookbook.texi:2852 guix-git/doc/guix-cookbook.texi:2854
  4446. #: guix-git/doc/guix-cookbook.texi:2855
  4447. #, no-wrap
  4448. msgid "Guix environment via direnv"
  4449. msgstr "Guix-Umgebung mit direnv"
  4450. #. type: menuentry
  4451. #: guix-git/doc/guix-cookbook.texi:2852
  4452. msgid "Setup Guix environment with direnv"
  4453. msgstr "Mit direnv Guix-Umgebungen einrichten."
  4454. #. type: Plain text
  4455. #: guix-git/doc/guix-cookbook.texi:2860
  4456. msgid "Guix provides a @samp{direnv} package, which could extend shell after directory change. This tool could be used to prepare a pure Guix environment."
  4457. msgstr "Guix stellt ein @samp{direnv}-Paket zur Verfügung, mit der die Shell nach einem Verzeichniswechsel erweitert werden kann. Dieses Werkzeug kann benutzt werden, um eine reine, „pure“ Guix-Umgebung vorzubereiten."
  4458. #. type: Plain text
  4459. #: guix-git/doc/guix-cookbook.texi:2866
  4460. msgid "The following example provides a shell function for @file{~/.direnvrc} file, which could be used from Guix Git repository in @file{~/src/guix/.envrc} file to setup a build environment similar to described in @pxref{Building from Git,,, guix, GNU Guix Reference Manual}."
  4461. msgstr "Das folgende Beispiel zeigt eine Shell-Funktion für die @file{~/.direnvrc}-Datei, die in einer Datei @file{~/src/guix/.envrc} in Guix’ Git-Repository benutzt werden kann, um eine zur Beschreibung im @ref{Erstellung aus dem Git,,, guix.de, Referenzhandbuch zu GNU Guix} ähnliche Erstellungsumgebung herzustellen."
  4462. #. type: Plain text
  4463. #: guix-git/doc/guix-cookbook.texi:2868
  4464. msgid "Create a @file{~/.direnvrc} with a Bash code:"
  4465. msgstr "Erstellen Sie eine @file{~/.direnvrc} mit einem Bash-Code darin:"
  4466. #. type: example
  4467. #: guix-git/doc/guix-cookbook.texi:2886
  4468. #, no-wrap
  4469. msgid ""
  4470. "# Thanks <https://github.com/direnv/direnv/issues/73#issuecomment-152284914>\n"
  4471. "export_function()\n"
  4472. "@{\n"
  4473. " local name=$1\n"
  4474. " local alias_dir=$PWD/.direnv/aliases\n"
  4475. " mkdir -p \"$alias_dir\"\n"
  4476. " PATH_add \"$alias_dir\"\n"
  4477. " local target=\"$alias_dir/$name\"\n"
  4478. " if declare -f \"$name\" >/dev/null; then\n"
  4479. " echo \"#!$SHELL\" > \"$target\"\n"
  4480. " declare -f \"$name\" >> \"$target\" 2>/dev/null\n"
  4481. " # Notice that we add shell variables to the function trigger.\n"
  4482. " echo \"$name \\$*\" >> \"$target\"\n"
  4483. " chmod +x \"$target\"\n"
  4484. " fi\n"
  4485. "@}\n"
  4486. "\n"
  4487. msgstr ""
  4488. "# Dank an <https://github.com/direnv/direnv/issues/73#issuecomment-152284914>\n"
  4489. "export_function()\n"
  4490. "@{\n"
  4491. " local name=$1\n"
  4492. " local alias_dir=$PWD/.direnv/aliases\n"
  4493. " mkdir -p \"$alias_dir\"\n"
  4494. " PATH_add \"$alias_dir\"\n"
  4495. " local target=\"$alias_dir/$name\"\n"
  4496. " if declare -f \"$name\" >/dev/null; then\n"
  4497. " echo \"#!$SHELL\" > \"$target\"\n"
  4498. " declare -f \"$name\" >> \"$target\" 2>/dev/null\n"
  4499. " # Beachten Sie, wir fügen Shell-Variable in den Funktionsauslöser ein.\n"
  4500. " echo \"$name \\$*\" >> \"$target\"\n"
  4501. " chmod +x \"$target\"\n"
  4502. " fi\n"
  4503. "@}\n"
  4504. "\n"
  4505. #. type: example
  4506. #: guix-git/doc/guix-cookbook.texi:2891
  4507. #, no-wrap
  4508. msgid ""
  4509. "use_guix()\n"
  4510. "@{\n"
  4511. " # Set GitHub token.\n"
  4512. " export GUIX_GITHUB_TOKEN=\"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"\n"
  4513. "\n"
  4514. msgstr ""
  4515. "use_guix()\n"
  4516. "@{\n"
  4517. " # GitHub-Token festlegen.\n"
  4518. " export GUIX_GITHUB_TOKEN=\"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"\n"
  4519. "\n"
  4520. #. type: example
  4521. #: guix-git/doc/guix-cookbook.texi:2894
  4522. #, no-wrap
  4523. msgid ""
  4524. " # Unset 'GUIX_PACKAGE_PATH'.\n"
  4525. " export GUIX_PACKAGE_PATH=\"\"\n"
  4526. "\n"
  4527. msgstr ""
  4528. " # Deaktivieren von 'GUIX_PACKAGE_PATH'.\n"
  4529. " export GUIX_PACKAGE_PATH=\"\"\n"
  4530. "\n"
  4531. #. type: example
  4532. #: guix-git/doc/guix-cookbook.texi:2903
  4533. #, no-wrap
  4534. msgid ""
  4535. " # Recreate a garbage collector root.\n"
  4536. " gcroots=\"$HOME/.config/guix/gcroots\"\n"
  4537. " mkdir -p \"$gcroots\"\n"
  4538. " gcroot=\"$gcroots/guix\"\n"
  4539. " if [ -L \"$gcroot\" ]\n"
  4540. " then\n"
  4541. " rm -v \"$gcroot\"\n"
  4542. " fi\n"
  4543. "\n"
  4544. msgstr ""
  4545. " # Müllsammlerwurzel neu erzeugen.\n"
  4546. " gcroots=\"$HOME/.config/guix/gcroots\"\n"
  4547. " mkdir -p \"$gcroots\"\n"
  4548. " gcroot=\"$gcroots/guix\"\n"
  4549. " if [ -L \"$gcroot\" ]\n"
  4550. " then\n"
  4551. " rm -v \"$gcroot\"\n"
  4552. " fi\n"
  4553. "\n"
  4554. #. type: example
  4555. #: guix-git/doc/guix-cookbook.texi:2918
  4556. #, no-wrap
  4557. msgid ""
  4558. " # Miscellaneous packages.\n"
  4559. " PACKAGES_MAINTENANCE=(\n"
  4560. " direnv\n"
  4561. " git\n"
  4562. " git:send-email\n"
  4563. " git-cal\n"
  4564. " gnupg\n"
  4565. " guile-colorized\n"
  4566. " guile-readline\n"
  4567. " less\n"
  4568. " ncurses\n"
  4569. " openssh\n"
  4570. " xdot\n"
  4571. " )\n"
  4572. "\n"
  4573. msgstr ""
  4574. " # Verschiedene Pakete.\n"
  4575. " PACKAGES_MAINTENANCE=(\n"
  4576. " direnv\n"
  4577. " git\n"
  4578. " git:send-email\n"
  4579. " git-cal\n"
  4580. " gnupg\n"
  4581. " guile-colorized\n"
  4582. " guile-readline\n"
  4583. " less\n"
  4584. " ncurses\n"
  4585. " openssh\n"
  4586. " xdot\n"
  4587. " )\n"
  4588. "\n"
  4589. #. type: example
  4590. #: guix-git/doc/guix-cookbook.texi:2921
  4591. #, no-wrap
  4592. msgid ""
  4593. " # Environment packages.\n"
  4594. " PACKAGES=(help2man guile-sqlite3 guile-gcrypt)\n"
  4595. "\n"
  4596. msgstr ""
  4597. " # In die Umgebung aufzunehmende Pakete.\n"
  4598. " PACKAGES=(help2man guile-sqlite3 guile-gcrypt)\n"
  4599. "\n"
  4600. #. type: example
  4601. #: guix-git/doc/guix-cookbook.texi:2924
  4602. #, no-wrap
  4603. msgid ""
  4604. " # Thanks <https://lists.gnu.org/archive/html/guix-devel/2016-09/msg00859.html>\n"
  4605. " eval \"$(guix environment --search-paths --root=\"$gcroot\" --pure guix --ad-hoc $@{PACKAGES[@@]@} $@{PACKAGES_MAINTENANCE[@@]@} \"$@@\")\"\n"
  4606. "\n"
  4607. msgstr ""
  4608. " # Dank an <https://lists.gnu.org/archive/html/guix-devel/2016-09/msg00859.html>\n"
  4609. " eval \"$(guix environment --search-paths --root=\"$gcroot\" --pure guix --ad-hoc $@{PACKAGES[@@]@} $@{PACKAGES_MAINTENANCE[@@]@} \"$@@\")\"\n"
  4610. "\n"
  4611. #. type: example
  4612. #: guix-git/doc/guix-cookbook.texi:2931
  4613. #, no-wrap
  4614. msgid ""
  4615. " # Predefine configure flags.\n"
  4616. " configure()\n"
  4617. " @{\n"
  4618. " ./configure --localstatedir=/var --prefix=\n"
  4619. " @}\n"
  4620. " export_function configure\n"
  4621. "\n"
  4622. msgstr ""
  4623. " # configure-Optionen vordefinieren.\n"
  4624. " configure()\n"
  4625. " @{\n"
  4626. " ./configure --localstatedir=/var --prefix=\n"
  4627. " @}\n"
  4628. " export_function configure\n"
  4629. "\n"
  4630. #. type: example
  4631. #: guix-git/doc/guix-cookbook.texi:2942
  4632. #, no-wrap
  4633. msgid ""
  4634. " # Run make and optionally build something.\n"
  4635. " build()\n"
  4636. " @{\n"
  4637. " make -j 2\n"
  4638. " if [ $# -gt 0 ]\n"
  4639. " then\n"
  4640. " ./pre-inst-env guix build \"$@@\"\n"
  4641. " fi\n"
  4642. " @}\n"
  4643. " export_function build\n"
  4644. "\n"
  4645. msgstr ""
  4646. " # make ausführen und optional etwas erstellen.\n"
  4647. " build()\n"
  4648. " @{\n"
  4649. " make -j 2\n"
  4650. " if [ $# -gt 0 ]\n"
  4651. " then\n"
  4652. " ./pre-inst-env guix build \"$@@\"\n"
  4653. " fi\n"
  4654. " @}\n"
  4655. " export_function build\n"
  4656. "\n"
  4657. #. type: example
  4658. #: guix-git/doc/guix-cookbook.texi:2949
  4659. #, no-wrap
  4660. msgid ""
  4661. " # Predefine push Git command.\n"
  4662. " push()\n"
  4663. " @{\n"
  4664. " git push --set-upstream origin\n"
  4665. " @}\n"
  4666. " export_function push\n"
  4667. "\n"
  4668. msgstr ""
  4669. " # Git-Befehl zum Pushen vordefinieren.\n"
  4670. " push()\n"
  4671. " @{\n"
  4672. " git push --set-upstream origin\n"
  4673. " @}\n"
  4674. " export_function push\n"
  4675. "\n"
  4676. #. type: example
  4677. #: guix-git/doc/guix-cookbook.texi:2952
  4678. #, no-wrap
  4679. msgid ""
  4680. " clear # Clean up the screen.\n"
  4681. " git-cal --author='Your Name' # Show contributions calendar.\n"
  4682. "\n"
  4683. msgstr ""
  4684. " clear # Den Bildschirm löschen.\n"
  4685. " git-cal --author='Ihr Name' # Kalender bisheriger Beiträge zeigen.\n"
  4686. "\n"
  4687. #. type: example
  4688. #: guix-git/doc/guix-cookbook.texi:2960
  4689. #, no-wrap
  4690. msgid ""
  4691. " # Show commands help.\n"
  4692. " echo \"\n"
  4693. "build build a package or just a project if no argument provided\n"
  4694. "configure run ./configure with predefined parameters\n"
  4695. "push push to upstream Git repository\n"
  4696. "\"\n"
  4697. "@}\n"
  4698. msgstr ""
  4699. " # Befehlsübersicht anzeigen.\n"
  4700. " echo \"\n"
  4701. "build ein Paket oder, ohne Argumente, ein Projekt erstellen\n"
  4702. "configure ./configure mit vordefinierten Parametern\n"
  4703. "push ins Upstream-Git-Repository pushen\n"
  4704. "\"\n"
  4705. "@}\n"
  4706. #. type: Plain text
  4707. #: guix-git/doc/guix-cookbook.texi:2964
  4708. msgid "Every project containing @file{.envrc} with a string @code{use guix} will have predefined environment variables and procedures."
  4709. msgstr "Jedes Projekt, das eine @file{.envrc} mit einer Zeichenkette @code{use guix} enthält, wird vordefinierte Umgebungsvariable und Prozeduren verwenden."
  4710. #. type: Plain text
  4711. #: guix-git/doc/guix-cookbook.texi:2966
  4712. msgid "Run @command{direnv allow} to setup the environment for the first time."
  4713. msgstr "Führen Sie @command{direnv allow} aus, um die Umgebung bei der ersten Nutzung einzurichten."
  4714. #. type: Plain text
  4715. #: guix-git/doc/guix-cookbook.texi:2978
  4716. msgid "Guix is based on the @uref{https://nixos.org/nix/, Nix package manager}, which was designed and implemented by Eelco Dolstra, with contributions from other people (see the @file{nix/AUTHORS} file in Guix.) Nix pioneered functional package management, and promoted unprecedented features, such as transactional package upgrades and rollbacks, per-user profiles, and referentially transparent build processes. Without this work, Guix would not exist."
  4717. msgstr "Guix baut auf dem @uref{https://nixos.org/nix/, Nix-Paketverwaltungsprogramm} auf, das von Eelco Dolstra entworfen und entwickelt wurde, mit Beiträgen von anderen Leuten (siehe die Datei @file{nix/AUTHORS} in Guix). Nix hat für die funktionale Paketverwaltung die Pionierarbeit geleistet und noch nie dagewesene Funktionalitäten vorangetrieben wie transaktionsbasierte Paketaktualisierungen und die Rücksetzbarkeit selbiger, eigene Paketprofile für jeden Nutzer und referenziell transparente Erstellungsprozesse. Ohne diese Arbeit gäbe es Guix nicht.<"
  4718. #. type: Plain text
  4719. #: guix-git/doc/guix-cookbook.texi:2981
  4720. msgid "The Nix-based software distributions, Nixpkgs and NixOS, have also been an inspiration for Guix."
  4721. msgstr "Die Nix-basierten Software-Distributionen Nixpkgs und NixOS waren auch eine Inspiration für Guix."
  4722. #. type: Plain text
  4723. #: guix-git/doc/guix-cookbook.texi:2987
  4724. msgid "GNU@tie{}Guix itself is a collective work with contributions from a number of people. See the @file{AUTHORS} file in Guix for more information on these fine people. The @file{THANKS} file lists people who have helped by reporting bugs, taking care of the infrastructure, providing artwork and themes, making suggestions, and more---thank you!"
  4725. msgstr "GNU@tie{}Guix ist selbst das Produkt kollektiver Arbeit mit Beiträgen durch eine Vielzahl von Leuten. Siehe die Datei @file{AUTHORS} in Guix für mehr Informationen, wer diese wunderbaren Menschen sind. In der Datei @file{THANKS} finden Sie eine Liste der Leute, die uns geholfen haben, indem Sie Fehler gemeldet, sich um unsere Infrastruktur gekümmert, künstlerische Arbeit und schön gestaltete Themen beigesteuert, Vorschläge gemacht und noch vieles mehr getan haben — vielen Dank!"
  4726. #. type: Plain text
  4727. #: guix-git/doc/guix-cookbook.texi:2990
  4728. msgid "This document includes adapted sections from articles that have previously been published on the Guix blog at @uref{https://guix.gnu.org/blog}."
  4729. msgstr "Dieses Dokument enthält angepasste Abschnitte aus Einträgen, die zuvor auf dem Blog von Guix unter @uref{https://guix.gnu.org/blog} veröffentlicht wurden."
  4730. #. type: cindex
  4731. #: guix-git/doc/guix-cookbook.texi:2995
  4732. #, no-wrap
  4733. msgid "license, GNU Free Documentation License"
  4734. msgstr "Lizenz, GNU-Lizenz für freie Dokumentation"
  4735. #. type: include
  4736. #: guix-git/doc/guix-cookbook.texi:2996
  4737. #, no-wrap
  4738. msgid "fdl-1.3.texi"
  4739. msgstr "fdl-1.3.texi"
  4740. #~ msgid "Power the Linode down. In the Linode's Disks/Configurations tab, resize the Debian disk to be smaller. 30 GB is recommended."
  4741. #~ msgstr "Fahren Sie den Linode-Knoten herunter. Im Karteireiter für „Disks/Configurations“ bei Linode verkleinern Sie das Laufwerk für Debian. Empfohlen werden 30@tie{}GB."
  4742. #~ msgid "In the Linode settings, \"Add a disk\", with the following:"
  4743. #~ msgstr "In den Linode-Einstellungen fügen Sie ein Laufwerk mit folgenden Eigenschaften hinzu („Add a disk“):"
  4744. #~ msgid "On the \"configuration\" field that comes with the default image, press \"...\" and select \"Edit\", then on that menu add to @file{/dev/sdc} the \"Guix\" label."
  4745. #~ msgstr "Drücken Sie im „configuration“-Feld des voreingestellten Abbilds auf „...“ und wählen Sie „Edit“. Tragen Sie in diesem Menü anschließend bei @file{/dev/sdc} „Guix“ als Bezeichnung („Label“) ein."
  4746. #~ msgid "Creating and using a custom Linux kernel"
  4747. #~ msgstr "Einen eigenen Linux-Kernel benutzen"
  4748. #~ msgid "The keyword syntax is @code{#:}; it is used to create unique identifiers. @pxref{Keywords,,, guile, GNU Guile Reference Manual}."
  4749. #~ msgstr "Die Syntax für Schlüsselwörter ist @code{#:}. Wir benutzen sie, um eindeutige Bezeichnungen zu erzeugen. Siehe @ref{Keywords,,, guile, GNU Guile Reference Manual}."
  4750. #~ msgid "@code{(add-before PHASE NEW-PHASE PROCEDURE)}: Run @code{PROCEDURE} named @code{NEW-PHASE} before @code{PHASE}."
  4751. #~ msgstr "@code{(add-before PHASE NEUE-PHASE PROZEDUR)}: Die @code{PROZEDUR} namens @code{NEUE-PHASE} vor @code{PHASE} ausführen."
  4752. #~ msgid "@code{(add-after PHASE NEW-PHASE PROCEDURE)}: Same, but afterwards."
  4753. #~ msgstr "@code{(add-after PHASE NEUE-PHASE PROZEDUR)}: Genauso, aber danach."
  4754. #~ msgid "@code{(replace PHASE PROCEDURE)}."
  4755. #~ msgstr "@code{(replace PHASE PROZEDUR)}."
  4756. #~ msgid "Learn more about build systems in"
  4757. #~ msgstr "Sie erfahren mehr über Erstellungssysteme in"
  4758. #~ msgid "@uref{https://www.gnu.org/software/guix/manual/en/html_node/Build-Systems.html#Build-Systems, the manual, section 4.2 Build systems},"
  4759. #~ msgstr "@uref{https://guix.gnu.org/manual/de/html_node/Erstellungssysteme.html#Erstellungssysteme, dem Handbuch, Abschnitt 6.3 Erstellungssysteme},"