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


                                                             
                                                                    













                                         
                    
                                                                    

                                                     
                                        
                                

    
{ lib, stdenv, fetchurl, pkg-config, gtk2, pcre }:

stdenv.mkDerivation rec {
  pname = "qxw";
  version = "20200708";

  src = fetchurl {
    url = "https://www.quinapalus.com/qxw-${version}.tar.gz";
    sha256 = "1si3ila7137c7x4mp3jv1q1mh3jp0p4khir1yz1rwy0mp3znwv7d";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ gtk2 pcre ];

  makeFlags = [ "DESTDIR=$(out)" ];

  patchPhase = ''
    sed -i 's/ `dpkg-buildflags[^`]*`//g;
            /mkdir -p/d;
            s/cp -a/install -D/;
            s,/usr/games,/bin,' Makefile
  '';

  meta = with lib; {
    description = "A program to help create and publish crosswords";
    homepage = "https://www.quinapalus.com/qxw.html";
    license = licenses.gpl2;
    maintainers = [ maintainers.tckmn ];
    platforms = platforms.linux;
  };
}