mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
illum: 0.4 -> 0.5
This commit is contained in:
parent
bc9b956714
commit
4735d5bec2
|
@ -1,18 +1,19 @@
|
|||
{ lib, stdenv, fetchgit, pkg-config, ninja, libevdev, libev }:
|
||||
{ lib, stdenv, fetchFromGitHub, pkg-config, ninja, libevdev, libev, udev }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
version = "0.4";
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "illum";
|
||||
version = "0.5";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/jmesmon/illum.git";
|
||||
src = fetchFromGitHub {
|
||||
owner = "jmesmon";
|
||||
repo = "illum";
|
||||
rev = "v${version}";
|
||||
sha256 = "S4lUBeRnZlRUpIxFdN/bh979xvdS7roF6/6Dk0ZUrnM=";
|
||||
fetchSubmodules = true;
|
||||
rev = "48ce8631346b1c88a901a8e4fa5fa7e8ffe8e418";
|
||||
sha256 = "05v3hz7n6b1mlhc6zqijblh1vpl0ja1y8y0lafw7mjdz03wxhfdb";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ ninja libevdev libev ];
|
||||
buildInputs = [ ninja libevdev libev udev ];
|
||||
|
||||
configurePhase = ''
|
||||
bash ./configure
|
||||
|
|
Loading…
Reference in a new issue