2021-10-17 02:12:59 +00:00
|
|
|
{ stdenv, lib, fetchurl, ncurses }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "xstow";
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "1.1.0";
|
2021-10-17 02:12:59 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://downloads.sourceforge.net/sourceforge/${pname}/${pname}-${version}.tar.bz2";
|
2022-08-12 12:06:08 +00:00
|
|
|
sha256 = "sha256-wXQ5XSmogAt1torfarrqIU4nBYj69MGM/HBYqeIE+dw=";
|
2021-10-17 02:12:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
ncurses
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2022-06-16 17:23:12 +00:00
|
|
|
broken = stdenv.isDarwin;
|
2021-10-17 02:12:59 +00:00
|
|
|
description = "A replacement of GNU Stow written in C++";
|
|
|
|
homepage = "http://xstow.sourceforge.net";
|
|
|
|
license = licenses.gpl2Only;
|
|
|
|
maintainers = with maintainers; [ nzbr ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|