7 stdenv.mkDerivation (finalAttrs: {
12 url = "mirror://gnu/stow/stow-${finalAttrs.version}.tar.bz2";
13 hash = "sha256-DYWoUTZ355I2l7zkLNuzPStXr5FaveHQZx566Asu8LQ=";
16 nativeBuildInputs = [ perlPackages.perl ];
17 buildInputs = with perlPackages; [ perl IOStringy TestOutput ];
22 description = "Tool for managing the installation of multiple software packages in the same run-time directory tree";
25 GNU Stow is a symlink farm manager which takes distinct packages
26 of software and/or data located in separate directories on the
27 filesystem, and makes them appear to be installed in the same
28 place. For example, /usr/local/bin could contain symlinks to
29 files within /usr/local/stow/emacs/bin, /usr/local/stow/perl/bin
30 etc., and likewise recursively for any other subdirectories such
31 as .../share, .../man, and so on.
34 license = licenses.gpl3Plus;
35 homepage = "https://www.gnu.org/software/stow/";
36 maintainers = with maintainers; [ sarcasticadmin ];
37 platforms = platforms.all;