- with import <nixpkgs> {};
- stdenv.mkDerivation {
- name = "genreport";
- buildInputs = [ autoconf automake libtool gnumake gcc openssl_1_0_2 pkgconfig ];
- # unpackPhase = "true";
- src = ./.;
- postUnpack = ''
- automake --add-missing
- autoreconf -fvi
- '';
- shellHook = ''
- '';
- }