illum: 0.4 -> 0.5

main
Piotr Halama 3 years ago
parent bc9b956714
commit 4735d5bec2
  1. 17
      pkgs/tools/system/illum/default.nix

@ -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…
Cancel
Save