Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 17 lines 426 B view raw
1{ stdenv 2, fetchFromGitHub 3}: rec { 4 version = "2.6.0"; 5 src = fetchFromGitHub { 6 owner = "openrazer"; 7 repo = "openrazer"; 8 rev = "v${version}"; 9 sha256 = "1s5irs3avrlp891mxan3z8p55ias9rq26rqp2qrlcc6i4vl29di0"; 10 }; 11 meta = with stdenv.lib; { 12 homepage = https://openrazer.github.io/; 13 license = licenses.gpl2; 14 maintainers = with maintainers; [ roelvandijk ]; 15 platforms = platforms.linux; 16 }; 17}