Merge pull request #35074 from matthewbauer/flock-init

flock: init at 0.2.3
This commit is contained in:
Jörg Thalheim 2018-02-21 02:06:54 +00:00 committed by GitHub
commit bd9a562402
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, lib, fetchFromGitHub, autoreconfHook, ronn }:
stdenv.mkDerivation rec {
pname = "flock";
name = "${pname}-${version}";
version = "0.2.3";
src = fetchFromGitHub {
owner = "discoteq";
repo = pname;
rev = "v${version}";
sha256 = "1vdq22zhdfi7wwndsd6s7fwmz02fsn0x04d7asq4hslk7bjxjjzn";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ ronn ];
meta = with lib; {
description = "Cross-platform version of flock(1)";
maintainers = [ maintainers.matthewbauer ];
platforms = platforms.all;
license = licenses.isc;
};
}

View file

@ -18578,6 +18578,8 @@ with pkgs;
flightgear = libsForQt5.callPackage ../games/flightgear { };
flock = callPackages ../development/tools/flock { };
freecell-solver = callPackage ../games/freecell-solver { };
freeciv = callPackage ../games/freeciv { };