Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- with import <nixpkgs> {};
- stdenv.mkDerivation rec {
- name = "statusnotifier${version}";
- version = "0.0.1";
- buildInputs = [ autoconf automake glib gtk3 gdk_pixbuf gtk-doc libtool ];
- configureScript = ''
- echo CONFIGURE
- ./configure --prefix=/usr --enable-example
- echo DONE
- sh autogen.sh
- '';
- installFlags = [ "DESTDIR=$(out)" ];
- src = ./.;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement