Advertisement
Guest User

Untitled

a guest
Mar 11th, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. with import <nixpkgs> {};
  2.  
  3. stdenv.mkDerivation rec {
  4. name = "statusnotifier${version}";
  5. version = "0.0.1";
  6. buildInputs = [ autoconf automake glib gtk3 gdk_pixbuf gtk-doc libtool ];
  7. configureScript = ''
  8. echo CONFIGURE
  9. ./configure --prefix=/usr --enable-example
  10. echo DONE
  11. sh autogen.sh
  12. '';
  13.  
  14. installFlags = [ "DESTDIR=$(out)" ];
  15. src = ./.;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement