forked from cory/tildefriends
37 lines
928 B
Nix
37 lines
928 B
Nix
|
with import <nixpkgs> {};
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "tildefriends";
|
||
|
version = "0.0.16";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://dev.tildefriends.net/cory/${pname}/archive/v${version}.tar.gz";
|
||
|
sha256 = "19iay794xxs3j3mhnpl4vwx65sflw5vvjaahp0jk85wlwlrc7ddw";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
gnumake
|
||
|
openssl
|
||
|
];
|
||
|
# buildInputs = [ ]
|
||
|
#doCheck = true;
|
||
|
|
||
|
|
||
|
strictDeps = true;
|
||
|
|
||
|
outputs = [ "out" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
#description = "A program that produces a familiar, friendly greeting";
|
||
|
#longDescription = ''
|
||
|
# GNU Hello is a program that prints "Hello, world!" when you run it.
|
||
|
# It is fully customizable.
|
||
|
#'';
|
||
|
#homepage = "https://www.gnu.org/software/hello/manual/";
|
||
|
#changelog = "https://git.savannah.gnu.org/cgit/hello.git/plain/NEWS?h=v${version}";
|
||
|
|
||
|
license = licenses.gpl3Plus;
|
||
|
maintainers = [ maintainers.tasiaiso ];
|
||
|
platforms = platforms.all;
|
||
|
};
|
||
|
}
|