Merge pull request #133942 from sternenseemann/catgirl-misc-fixes

This commit is contained in:
Sandro 2021-08-15 01:12:47 +02:00 committed by GitHub
commit e2afb80535
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
{ ctags, fetchurl, lib, libressl, man, ncurses, pkg-config, stdenv }:
{ ctags, fetchurl, fetchpatch, lib, libressl, ncurses, pkg-config, stdenv }:
stdenv.mkDerivation rec {
pname = "catgirl";
@ -9,8 +9,15 @@ stdenv.mkDerivation rec {
sha256 = "182l7yryqm1ffxqgz3i4lcnzwzpbpm2qvadddmj0xc8dh8513s0w";
};
patches = [
(fetchpatch {
url = "https://git.causal.agency/catgirl/patch/?id=3f3585d0f32e66ad5c8c6c713f315e14810230eb";
sha256 = "1vrgimvf007bxz8blxm3vjc7g3xwxplwxyrblnsryq54cqaw0xv3";
})
];
nativeBuildInputs = [ ctags pkg-config ];
buildInputs = [ libressl man ncurses ];
buildInputs = [ libressl ncurses ];
strictDeps = true;
meta = with lib; {