mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Adding OIS library
svn path=/nixpkgs/trunk/; revision=25232
This commit is contained in:
parent
0e3e7d8976
commit
f7f753b3a4
1 changed files with 53 additions and 0 deletions
53
pkgs/development/libraries/ois/default.nix
Normal file
53
pkgs/development/libraries/ois/default.nix
Normal file
|
@ -0,0 +1,53 @@
|
|||
x@{builderDefsPackage
|
||||
, autoconf, automake, libtool, m4
|
||||
, libX11, xproto, libXi, inputproto
|
||||
, libXaw, libXmu, libXt
|
||||
, ...}:
|
||||
builderDefsPackage
|
||||
(a :
|
||||
let
|
||||
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||
[];
|
||||
|
||||
buildInputs = map (n: builtins.getAttr n x)
|
||||
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||||
sourceInfo = rec {
|
||||
baseName="ois";
|
||||
majorVersion="1";
|
||||
minorVersion="3";
|
||||
version="${majorVersion}.${minorVersion}";
|
||||
name="${baseName}-${version}";
|
||||
url="mirror://sourceforge/project/wgois/Source%20Release/${version}/ois_v${majorVersion}-${minorVersion}.tar.gz";
|
||||
hash="18gs6xxhbqb91x2gm95hh1pmakimqim1k9c65h7ah6g14zc7dyjh";
|
||||
};
|
||||
in
|
||||
rec {
|
||||
src = a.fetchurl {
|
||||
url = sourceInfo.url;
|
||||
sha256 = sourceInfo.hash;
|
||||
};
|
||||
|
||||
inherit (sourceInfo) name version;
|
||||
inherit buildInputs;
|
||||
|
||||
phaseNames = ["doConfigure" "doMakeInstall"];
|
||||
|
||||
configureCommand = ''sh bootstrap; sh configure'';
|
||||
|
||||
meta = {
|
||||
description = "Object-oriented C++ input system";
|
||||
maintainers = with a.lib.maintainers;
|
||||
[
|
||||
raskin
|
||||
];
|
||||
platforms = with a.lib.platforms;
|
||||
linux;
|
||||
license = a.lib.zlib;
|
||||
};
|
||||
passthru = {
|
||||
updateInfo = {
|
||||
downloadPage = "http://sourceforge.net/projects/wgois/files/Source Release/";
|
||||
};
|
||||
};
|
||||
}) x
|
||||
|
Loading…
Reference in a new issue