libowlevelzs: init at 0.1.1
This commit is contained in:
parent
c7a8f9fbff
commit
d39fa1f503
2 changed files with 29 additions and 0 deletions
27
pkgs/development/libraries/libowlevelzs/default.nix
Normal file
27
pkgs/development/libraries/libowlevelzs/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ cmake
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libowlevelzs";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zseri";
|
||||
repo = "libowlevelzs";
|
||||
rev = "v${version}";
|
||||
sha256 = "y/EaMMsmJEmnptfjwiat4FC2+iIKlndC2Wdpop3t7vY=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Zscheile Lowlevel (utility) library";
|
||||
homepage = "https://github.com/zseri/libowlevelzs";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ zseri ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -23423,6 +23423,8 @@ in
|
|||
|
||||
libowfat = callPackage ../development/libraries/libowfat { };
|
||||
|
||||
libowlevelzs = callPackage ../development/libraries/libowlevelzs { };
|
||||
|
||||
librecad = libsForQt514.callPackage ../applications/misc/librecad { };
|
||||
|
||||
libreoffice = hiPrio libreoffice-still;
|
||||
|
|
Loading…
Reference in a new issue