Created
January 28, 2016 09:40
-
-
Save enko/765494a6f41aeaf3762c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ stdenv, automake, autoconf, vim, glib, clang, libxml2, fetchurl, openssl, ncurses, pkgconfig, popt }: | |
stdenv.mkDerivation rec { | |
name = "apt-dater-${version}"; | |
version = "1.0.2"; | |
src = fetchurl { | |
url = "https://github.com/DE-IBH/apt-dater/archive/v${version}.tar.gz"; | |
sha256 = "4d01e734f4dac32ff2eb279e6493a1019f2c2fce0e35cea48df027a593df0355"; | |
}; | |
buildInputs = [ clang libxml2 pkgconfig ncurses automake autoconf vim glib popt ]; | |
configureFlags = "--disable-nls"; | |
doCheck = true; | |
makeFlags = [ | |
"DESTDIR=$(out)" | |
]; | |
meta = with stdenv.lib; { | |
homepage = https://www.ibh.de/apt-dater/; | |
description = "apt-dater provides an ncurses frontend for managing package updates on a large number of remote hosts using SSH."; | |
license = licenses.gpl2; | |
maintainers = with maintainers; [ pSub ]; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment