-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #246975 from cafkafk/cafk-guix
guix: init at 1.4.0
- Loading branch information
Showing
1 changed file
with
138 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
{ lib | ||
, stdenv | ||
, fetchurl | ||
, autoreconfHook | ||
, git | ||
, glibcLocales | ||
, guile | ||
, guile-avahi | ||
, guile-disarchive | ||
, guile-gcrypt | ||
, guile-git | ||
, guile-gnutls | ||
, guile-json | ||
, guile-lib | ||
, guile-lzlib | ||
, guile-lzma | ||
, guile-semver | ||
, guile-ssh | ||
, guile-sqlite3 | ||
, guile-zlib | ||
, guile-zstd | ||
, help2man | ||
, makeWrapper | ||
, pkg-config | ||
, po4a | ||
, scheme-bytestructures | ||
, texinfo | ||
, bzip2 | ||
, libgcrypt | ||
, sqlite | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "guix"; | ||
version = "1.4.0"; | ||
|
||
src = fetchurl { | ||
url = "mirror://gnu/guix/guix-${version}.tar.gz"; | ||
hash = "sha256-Q8dpy/Yy7wVEmsH6SMG6FSwzSUxqvH5HE3u6eyFJ+KQ="; | ||
}; | ||
|
||
postPatch = '' | ||
sed nix/local.mk -i -E \ | ||
-e "s|^sysvinitservicedir = .*$|sysvinitservicedir = $out/etc/init.d|" \ | ||
-e "s|^openrcservicedir = .*$|openrcservicedir = $out/etc/openrc|" | ||
''; | ||
|
||
strictDeps = true; | ||
|
||
nativeBuildInputs = [ | ||
autoreconfHook | ||
git | ||
glibcLocales | ||
guile | ||
guile-avahi | ||
guile-disarchive | ||
guile-gcrypt | ||
guile-git | ||
guile-gnutls | ||
guile-json | ||
guile-lib | ||
guile-lzlib | ||
guile-lzma | ||
guile-semver | ||
guile-ssh | ||
guile-sqlite3 | ||
guile-zlib | ||
guile-zstd | ||
help2man | ||
makeWrapper | ||
pkg-config | ||
po4a | ||
scheme-bytestructures | ||
texinfo | ||
]; | ||
|
||
buildInputs = [ | ||
bzip2 | ||
guile | ||
libgcrypt | ||
sqlite | ||
]; | ||
|
||
propagatedBuildInputs = [ | ||
guile-avahi | ||
guile-disarchive | ||
guile-gcrypt | ||
guile-git | ||
guile-gnutls | ||
guile-json | ||
guile-lib | ||
guile-lzlib | ||
guile-lzma | ||
guile-semver | ||
guile-ssh | ||
guile-sqlite3 | ||
guile-zlib | ||
guile-zstd | ||
scheme-bytestructures | ||
]; | ||
|
||
configureFlags = [ | ||
"--localstatedir=/var" | ||
"--sysconfdir=/etc" | ||
"--with-bash-completion-dir=$(out)/etc/bash_completion.d" | ||
]; | ||
|
||
enableParallelBuilding = true; | ||
|
||
postInstall = '' | ||
for f in $out/bin/*; do | ||
wrapProgram $f \ | ||
--prefix GUILE_LOAD_PATH : "$out/${guile.siteDir}:$GUILE_LOAD_PATH" \ | ||
--prefix GUILE_LOAD_COMPILED_PATH : "$out/${guile.siteCcacheDir}:$GUILE_LOAD_COMPILED_PATH" | ||
done | ||
''; | ||
|
||
meta = with lib; { | ||
description = "Functional package manager with a Scheme interface"; | ||
longDescription = '' | ||
GNU Guix is a purely functional package manager for the GNU system, and a distribution thereof. | ||
In addition to standard package management features, Guix supports | ||
transactional upgrades and roll-backs, unprivileged package management, | ||
per-user profiles, and garbage collection. | ||
It provides Guile Scheme APIs, including high-level embedded | ||
domain-specific languages (EDSLs), to describe how packages are built | ||
and composed. | ||
A user-land free software distribution for GNU/Linux comes as part of | ||
Guix. | ||
Guix is based on the Nix package manager. | ||
''; | ||
homepage = "http://www.gnu.org/software/guix"; | ||
license = licenses.gpl3Plus; | ||
mainProgram = "guix"; | ||
maintainers = with maintainers; [ cafkafk ]; | ||
platforms = platforms.linux; | ||
}; | ||
} |