My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/compilers/flux/default.nix

21 lines
568 B

{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkg-config }:
stdenv.mkDerivation rec {
pname = "flux";
version = "2013-09-20";
src = fetchFromGitHub {
owner = "deniskropp";
repo = pname;
rev = "e45758aa9384b9740ff021ea952399fd113eb0e9";
sha256 = "11f3ypg0sdq5kj69zgz6kih1yrzgm48r16spyvzwvlswng147410";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
meta = with lib; {
description = "An interface description language used by DirectFB";
homepage = "https://github.com/deniskropp/flux";
license = licenses.mit;
};
}