gol-c: remove package

Not really needed so we're removing it.
This commit is contained in:
Gabriel Arazas 2023-07-15 15:54:04 +08:00
parent 6eb80bb910
commit 244fe6fee7
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 0 additions and 23 deletions

View File

@ -13,7 +13,6 @@ let
domterm = callPackage ./domterm { };
freerct = callPackage ./freerct.nix { };
distant = callPackage ./distant.nix { };
gol-c = callPackage ./gol-c.nix { };
gnome-search-provider-recoll =
callPackage ./gnome-search-provider-recoll.nix { };
guile-config = callPackage ./guile-config.nix { };

View File

@ -1,22 +0,0 @@
{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "GOL-C";
version = "unstable-2022-03-25";
src = fetchFromGitHub {
owner = "FlynnOwen";
repo = "GOL-C";
rev = "02c76a178887c88aeff72e906c0dd5edba67aebe";
sha256 = "sha256-tlNuAIQUIfvTjeWo7O6X0MLSGX1v7yFZTsatY8gWNxA=";
};
installPhase = ''
install -Dm755 GOL -t $out/bin
'';
meta = with lib; {
description = "Game of Life implementation in C";
homepage = "https://github.com/FlynnOwen/GOL-C";
};
}