summary refs log blame commit diff
path: root/pkgs/applications/misc/confclerk/default.nix
blob: b07e0fb8c5208cef4ebfedc0bc2a26da56a5fde8 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                      
                         
                     

                      

                  
                                                                                             
                                                                    












                                                       
                                                          

                                                         
                                           

    
{ stdenv, fetchurl, qt4, qmake4Hook }:

let version = "0.6.4"; in
stdenv.mkDerivation {
  pname = "confclerk";
  inherit version;

  src = fetchurl {
    url = "https://www.toastfreeware.priv.at/tarballs/confclerk/confclerk-${version}.tar.gz";
    sha256 = "10rhg44px4nvbkd3p341cmp2ds43jn8r4rvgladda9v8zmsgr2b3";
  };

  buildInputs = [ qt4 ];

  nativeBuildInputs = [ qmake4Hook ];

  installPhase = ''
    mkdir -p $out/bin
    cp src/bin/confclerk $out/bin
  '';

  meta = {
    description = "Offline conference schedule viewer";
    homepage = http://www.toastfreeware.priv.at/confclerk;
    license = stdenv.lib.licenses.gpl2;
    maintainers = with stdenv.lib.maintainers; [ ehmry ];
    platforms = stdenv.lib.platforms.linux;
  };
}