mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
gol-c: init at unstable-2022-03-25
This commit is contained in:
parent
1c4a7b4fcd
commit
e60afd110c
@ -14,6 +14,7 @@ let
|
||||
devdocs-desktop = callPackage ./devdocs-desktop.nix { };
|
||||
doggo = callPackage ./doggo.nix { };
|
||||
emulsion-palette = callPackage ./emulsion-palette.nix { };
|
||||
gol-c = callPackage ./gol-c.nix { };
|
||||
gnome-search-provider-browser-tabs = callPackage ./gnome-search-provider-browser-tabs.nix { };
|
||||
gnome-search-provider-recoll = callPackage ./gnome-search-provider-recoll.nix { };
|
||||
gnome-shell-extension-burn-my-windows =
|
||||
|
22
pkgs/gol-c.nix
Normal file
22
pkgs/gol-c.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user