This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/pkgs/wxedid/default.nix

17 lines
377 B
Nix

{ lib, stdenv, fetchurl, wxGTK32 }:
stdenv.mkDerivation rec {
pname = "wxedid";
version = "0.0.27";
src = fetchurl {
url = "https://downloads.sourceforge.net/${pname}/${pname}-${version}.tar.gz";
sha256 = "KBIGrzsJ40TEsz+kJQZi9BPPFPITfVRrTlc1FYqdFfo=";
};
postPatch = ''
patchShebangs --build src/rcode/rcd_autogen
'';
buildInputs = [ wxGTK32 ];
}