smooth: init at 0.9.6
This commit is contained in:
parent
44c5606792
commit
832faf8b7d
|
@ -0,0 +1,43 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
|
||||
, gtk3
|
||||
, curl
|
||||
, libxml2
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "smooth";
|
||||
version = "0.9.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "enzo1982";
|
||||
repo = "smooth";
|
||||
rev = "v${version}";
|
||||
sha256 = "05j5gk6kz2089x8bcq2l0kjspfiiymxn69jcxl4dh9lw96blbadr";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"prefix=$(out)"
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gtk3
|
||||
curl
|
||||
libxml2
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "The smooth Class Library";
|
||||
license = licenses.artistic2;
|
||||
homepage = "http://www.smooth-project.org/";
|
||||
maintainers = with maintainers; [ shamilton ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -23006,6 +23006,8 @@ in
|
|||
|
||||
smallwm = callPackage ../applications/window-managers/smallwm { };
|
||||
|
||||
smooth = callPackage ../development/libraries/smooth { };
|
||||
|
||||
smos = callPackage ../applications/misc/smos { };
|
||||
|
||||
spectrwm = callPackage ../applications/window-managers/spectrwm { };
|
||||
|
|
Loading…
Reference in New Issue