Merge pull request #197339 from damhiya/xcwd

xcwd: 2019-05-09 -> 1.0
This commit is contained in:
Bobby Rong 2022-10-29 10:30:36 +08:00 committed by GitHub
commit cdcd1c2120
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub, libX11 }:
stdenv.mkDerivation {
version = "2019-05-09";
stdenv.mkDerivation rec {
version = "1.0";
pname = "xcwd";
src = fetchFromGitHub {
owner = "schischi";
repo = "xcwd";
rev = "99738e1176acf3f39c2e709236c3fd87b806f2ed";
sha256 = "1wvhj5x8ysi1q73f9cw1f6znvp2zivd8pp6z1p3znw732h4zlv6v";
rev = "v${version}";
sha256 = "sha256-M6/1H6hI50Cvx40RTKzZXoUui0FGZfwe1IwdaxMJIQo=";
};
buildInputs = [ libX11 ];