spacepaste

  1.  
  2. with import <nixpkgs> {};
  3. stdenv.mkDerivation {
  4. name = "genreport";
  5. buildInputs = [ autoconf automake libtool gnumake gcc openssl_1_0_2 pkgconfig ];
  6. # unpackPhase = "true";
  7. src = ./.;
  8. postUnpack = ''
  9. automake --add-missing
  10. autoreconf -fvi
  11. '';
  12. shellHook = ''
  13. '';
  14. }
  15.