summary refs log tree commit diff
path: root/pkgs/development/guile-modules
AgeCommit message (Collapse)AuthorFilesLines
2022-10-26Merge pull request #196048 from r-ryantm/auto-update/guile-sshNikolay Korotkiy1-2/+2
guile-ssh: 0.15.1 -> 0.16.0
2022-10-25guile-sqlite3: init at 0.1.3M. Ian Graham1-0/+44
2022-10-22Merge pull request #187569 from sikmir/guile-hallMario Rodas1-0/+29
guile-hall: init at 0.4.1
2022-10-14guile-ssh: 0.15.1 -> 0.16.0R. Ryantm1-2/+2
2022-10-09Merge pull request #189421 from foo-dogsquared/update-guile-gcryptSandro3-17/+11
2022-10-04guile-git: add make flags and testsGabriel Arazas1-5/+7
2022-10-04guile-json: add make flags and testsGabriel Arazas1-7/+2
2022-10-04guile-gcrypt: add make flags and testsGabriel Arazas1-5/+2
2022-09-28guile-json: 4.7.1 -> 4.7.2R. Ryantm1-2/+2
2022-08-20guile-config: init at 0.5.1Nikolay Korotkiy1-0/+29
2022-07-29guile-fibers: 1.0.0 -> 1.1.1R. Ryantm1-2/+2
2022-05-29Merge pull request #173243 from eikek/update-guile-jsonBobby Rong1-3/+3
guile-json: 4.7.0 -> 4.7.1 + allow for all platforms
2022-05-27tree-wide: SDL may not have a .devPeter Hoeg1-1/+1
2022-05-16guile-json: allow on all platformseikek1-1/+1
2022-05-16guile-json: 4.7.0 -> 4.7.1eikek1-2/+2
2022-03-20guile-ssh: 0.15.0 -> 0.15.1R. Ryantm1-2/+2
2022-02-12guile-ssh: 0.13.1 -> 0.15.0R. Ryantm1-2/+2
2022-02-12guile-json: 4.5.2 -> 4.7.0R. Ryantm1-2/+2
2022-02-06guile-xcb: update homepage and sourceRenaud1-5/+7
2022-01-29guile-gnome: droppiegames1-70/+0
2021-12-12guile-sdl2: 0.5.0 → 0.7.0Nikolay Korotkiy1-2/+2
2021-08-09guile-lib: 0.2.6.1 -> 0.2.7R. RyanTM1-2/+2
2021-07-22guile-git: 0.5.1 -> 0.5.2Ethan Edwards1-2/+2
2021-06-22Merge pull request #127615 from ethancedwards8/guile-sshSandro1-0/+51
guile-ssh: init at 0.13.1
2021-06-21guile-ssh: init at 0.13.1Ethan Edwards1-0/+51
2021-06-21Merge pull request #127610 from ethancedwards8/guile-git-updateSandro1-2/+2
2021-06-21Merge pull request #127611 from ethancedwards8/guile-json-updateSandro1-2/+2
guile-json: 4.4.1 -> 4.5.2
2021-06-20guile-json: 4.4.1 -> 4.5.2Ethan Edwards1-2/+2
2021-06-20guile-git: 0.3.0 -> 0.5.1Ethan Edwards1-2/+2
2021-06-20guile-gcrypt: 0.2.1 -> 0.3.0R. RyanTM1-2/+2
2021-06-18Merge pull request #126646 from ethancedwards8/guile-jsonSandro1-0/+39
guile-json: init at 4.4.1
2021-06-18guile-gcrypt: init at 0.2.1 (#126645)Ethan Edwards1-0/+45
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-06-18guile-json: init at 4.4.1Ethan Edwards1-0/+39
2021-06-12guile-git: init at 0.3.0Ethan Edwards1-0/+48
2021-04-15guile-commonmark: init at 0.1.2AndersonTorres1-0/+42
2021-04-15guile-xcb: rewriteAndersonTorres1-16/+23
2021-04-15guile-sdl2: rewriteAndersonTorres1-14/+28
2021-04-15guile-sdl: rewriteAndersonTorres1-11/+27
2021-04-15guile-reader: rewriteAndersonTorres1-15/+28
2021-04-15guile-opengl: rewriteAndersonTorres1-9/+15
2021-04-15guile-ncurses: rewriteAndersonTorres1-10/+21
2021-04-15guile-lib: rewriteAndersonTorres1-10/+19
2021-04-15guile-gnome: rewriteAndersonTorres1-9/+39
2021-04-15guile-fibers: rewriteAndersonTorres1-9/+20
2021-04-15guile-cairo: rewriteAndersonTorres1-6/+20
2021-03-12guile-opengl: expand platforms to unixBen Siraphob1-1/+1
2021-01-19treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nixJonathan Ringer10-20/+20
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
2021-01-17pkgs/development: stdenv.lib -> libPavol Rusnak2-2/+1
this takes care of the following folders in pkgs/development: * arduino * chez-modules * go-packages * guile-modules * idris-modules * perl-modules * r-modules * ruby-modules
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch10-20/+20
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-12-02guile-cairo: 1.11.1 -> 1.11.2R. RyanTM1-2/+2